fix unterminated quote
parent
cd2b381f77
commit
eae5a32b93
|
|
@ -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;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -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[] {
|
||||
|
|
|
|||
Loading…
Reference in New Issue