mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
fixing 'undefined is not a function' error when loading apps
This commit is contained in:
parent
ef53b1bf00
commit
5e6ed119fa
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue