fix unterminated quote

pull/353/head
Frostebite 2022-04-06 21:29:53 +01:00
parent cd2b381f77
commit eae5a32b93
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}`;
echo"---${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}`;
echo"---${buildParameters.logId}"`;
}
public static getHooks(customJobHooks): Hook[] {