1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Merge pull request #319 from Budibase/fix-budibase-dir

fix budibase apps dir
This commit is contained in:
Martin McKeaveney 2020-06-03 21:39:29 +01:00 committed by GitHub
commit fae0b2d932
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View file

@ -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

View file

@ -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)) {