mirror of
https://github.com/sasjs/server.git
synced 2026-01-11 16:20:06 +00:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import { copy, createFolder } from '@sasjs/utils'
|
|
|
|
import { getTmpMacrosPath, sasJSCoreMacros } from '.'
|
|
|
|
export const copySASjsCore = async () => {
|
|
await createFolder(sasJSCoreMacros)
|
|
|
|
const macrosDrivePath = getTmpMacrosPath()
|
|
await copy(sasJSCoreMacros, macrosDrivePath)
|
|
}
|