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

fix: removing single quotes from _program value

This commit is contained in:
Allan Bowe
2022-09-21 19:57:32 +00:00
parent 24966e695a
commit a0e7875ae6

View File

@@ -31,7 +31,7 @@ export const programPathInjection = (
return `._PROGRAM = '${path}';\n${code}`
}
if (runtime === RunTimeType.SAS) {
return `%let _program = '${path}';\n${code}`
return `%let _program = ${path};\n${code}`
}
}