.build_package中命令修改

This commit is contained in:
Joanna93-JJ 2021-01-14 12:20:06 +08:00
parent 6e268935c9
commit 93d2a0b961

View File

@ -12,6 +12,6 @@ _.each(apps, function(item){
if(stat.isDirectory() === true) {
let packagePath = path.join(fPath, "steedos-app")
execSync(`steedos package:build -n ${item} -p ${packagePath}`);
execSync(`cd ${fPath} && steedos package:build -n ${item} -p ${packagePath}`);
}
})