0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Merge pull request #6174 from cruikshj/master

fixing 'undefined is not a function' error when loading apps
This commit is contained in:
Hannah Wolfe 2015-12-06 09:34:53 +00:00
commit 22e3c54ed1

View file

@ -2,7 +2,7 @@
var fs = require('fs'),
Promise = require('bluebird'),
path = require('path'),
parsePackageJson = require('../utils/parse-package-json').parsePackageJson;
parsePackageJson = require('../utils/parse-package-json');
function AppPermissions(appPath) {
this.appPath = appPath;