1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-11 16:20:06 +00:00
Files
server/api/src/utils/copySASjsCore.ts
2022-03-23 17:58:18 +05:00

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