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