From c38896fd28ac8c6b5dd9ad805190c5ad0c23231c Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Mon, 6 Nov 2023 04:57:50 +0000 Subject: [PATCH] fix: Don't require build root at this time --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index a561bf2e..3b9aaee8 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -31,7 +31,7 @@ console.log({ _PH_HOME, _PH_PROJECT_ROOT, _PH_BUILD_ROOT }) export const SETTINGS = { PH_HOME: mkPath(_PH_HOME), PH_PROJECT_ROOT: mkPath(_PH_PROJECT_ROOT), - PH_BUILD_ROOT: mkPath(_PH_BUILD_ROOT), + PH_BUILD_ROOT: mkPath(_PH_BUILD_ROOT, { required: false }), DEBUG: mkBoolean(false),