1
0
mirror of https://github.com/sasjs/server.git synced 2026-04-21 21:01:31 +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
+1 -3
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)
}