1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

fix: quick fix for executables

This commit is contained in:
Saad Jutt
2022-03-23 17:15:46 +05:00
parent 81f6605249
commit 9e53470947

View File

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