From a701bb25e77c783c09df60fd892449f571dcccb8 Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Wed, 23 Mar 2022 17:58:18 +0500 Subject: [PATCH] Revert "fix: quick fix for executables" This reverts commit 9e53470947350f4b8d835a2cb6b70e3dabf247c4. --- api/src/utils/copySASjsCore.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/src/utils/copySASjsCore.ts b/api/src/utils/copySASjsCore.ts index 3d3d553..9a5e07c 100644 --- a/api/src/utils/copySASjsCore.ts +++ b/api/src/utils/copySASjsCore.ts @@ -1,8 +1,10 @@ -import { copy } from '@sasjs/utils' +import { copy, createFolder } from '@sasjs/utils' import { getTmpMacrosPath, sasJSCoreMacros } from '.' export const copySASjsCore = async () => { + await createFolder(sasJSCoreMacros) + const macrosDrivePath = getTmpMacrosPath() await copy(sasJSCoreMacros, macrosDrivePath) }