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) }