fix unterminated quote

pull/353/head
Frostebite 2022-04-06 21:18:57 +01:00
parent e2241e9985
commit cd2b381f77
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2833,7 +2833,7 @@ class CloudRunnerBuildCommandProcessor {
${commands}
${hooks.filter((x) => x.hook.includes(`after`)).map((x) => x.commands) || ' '}
echo "end of cloud runner job"
---${buildParameters.logId}"`;
---${buildParameters.logId}`;
}
static getHooks(customJobHooks) {
const experimentHooks = customJobHooks;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ export class CloudRunnerBuildCommandProcessor {
${commands}
${hooks.filter((x) => x.hook.includes(`after`)).map((x) => x.commands) || ' '}
echo "end of cloud runner job"
---${buildParameters.logId}"`;
---${buildParameters.logId}`;
}
public static getHooks(customJobHooks): Hook[] {