bugfix: _master package sent to incorrect directory
This commit is contained in:
parent
1e4659db19
commit
29d651dcfb
|
@ -30,7 +30,7 @@ module.exports.appsFolder = config => appPackageFolder(config, "")
|
||||||
|
|
||||||
module.exports.masterAppPackage = context => {
|
module.exports.masterAppPackage = context => {
|
||||||
const { config } = context
|
const { config } = context
|
||||||
const standardPackage = createAppPackage(context, "../appPackages/_master")
|
const standardPackage = createAppPackage(context, `${__dirname}/../appPackages/_master`)
|
||||||
|
|
||||||
const customizeMaster =
|
const customizeMaster =
|
||||||
config && config.customizeMaster ? config.customizeMaster : a => a
|
config && config.customizeMaster ? config.customizeMaster : a => a
|
||||||
|
|
Loading…
Reference in New Issue