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

Merge pull request #287 from sasjs/varfix

fix: removing single quotes from _program value
This commit is contained in:
Allan Bowe
2022-09-21 20:58:28 +01:00
committed by GitHub

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