1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-07 22:50:05 +00:00

feat(execute): add macroVars to job execution

This commit is contained in:
Yury Shkoda
2021-08-09 11:18:49 +03:00
parent bf1db4dd47
commit 39e486b8cb
4 changed files with 40 additions and 5 deletions

View File

@@ -7,4 +7,7 @@ export const getTmpFolderPath = () =>
export const getTmpFilesFolderPath = () =>
path.join(getTmpFolderPath(), 'files')
export const getTmpLogFolderPath = () => path.join(getTmpFolderPath(), 'log')
export const getTmpLogFolderPath = () => path.join(getTmpFolderPath(), 'logs')
export const getTmpWeboutFolderPath = () =>
path.join(getTmpFolderPath(), 'webouts')