1
0
Fork 0
mirror of synced 2024-06-22 16:10:40 +12:00

bugfix: create app not creating dirs

This commit is contained in:
Michael Shanks 2020-05-27 10:54:34 +01:00
parent b903a72987
commit 2a8ca59b6d

View file

@ -54,7 +54,7 @@ exports.create = async function(ctx) {
}
await instanceController.create(createInstCtx)
if (env.NODE_ENV === "production") {
if (ctx.isDev) {
const newAppFolder = await createEmptyAppPackage(ctx, newApplication)
await runNpmInstall(newAppFolder)
}