mirror of
https://github.com/sasjs/server.git
synced 2025-12-11 19:44:35 +00:00
fix: removing single quotes from _program value
This commit is contained in:
@@ -31,7 +31,7 @@ export const programPathInjection = (
|
|||||||
return `._PROGRAM = '${path}';\n${code}`
|
return `._PROGRAM = '${path}';\n${code}`
|
||||||
}
|
}
|
||||||
if (runtime === RunTimeType.SAS) {
|
if (runtime === RunTimeType.SAS) {
|
||||||
return `%let _program = '${path}';\n${code}`
|
return `%let _program = ${path};\n${code}`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user