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:
commit
22e3c54ed1
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…
Add table
Reference in a new issue