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

Revert "fix: quick fix for executables"

This reverts commit 9e53470947.
This commit is contained in:
Saad Jutt
2022-03-23 17:58:18 +05:00
parent 5758bcd392
commit a701bb25e7

View File

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