fix budibase apps dir
This commit is contained in:
parent
6c60076f42
commit
6452b68a7c
|
@ -15,7 +15,4 @@ JWT_SECRET={{cookieKey1}}
|
|||
PORT=4001
|
||||
|
||||
# error level for koa-pino
|
||||
LOG_LEVEL=error
|
||||
|
||||
# Budibase app directory
|
||||
BUDIBASE_DIR=~/.budibase
|
||||
LOG_LEVEL=error
|
|
@ -6,6 +6,7 @@ const env = require("../../environment")
|
|||
const instanceController = require("./instance")
|
||||
const { resolve, join } = require("path")
|
||||
const { copy, exists, readFile, writeFile } = require("fs-extra")
|
||||
const { budibaseAppsDir } = require("../../utilities/budibaseDir")
|
||||
const { exec } = require("child_process")
|
||||
const sqrl = require("squirrelly")
|
||||
|
||||
|
@ -73,7 +74,7 @@ const createEmptyAppPackage = async (ctx, app) => {
|
|||
"appDirectoryTemplate"
|
||||
)
|
||||
|
||||
const appsFolder = env.BUDIBASE_DIR
|
||||
const appsFolder = budibaseAppsDir()
|
||||
const newAppFolder = resolve(appsFolder, app._id)
|
||||
|
||||
if (await exists(newAppFolder)) {
|
||||
|
|
Loading…
Reference in New Issue