9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
|
|
export class CloudRunnerBuildCommandProcessor {
|
||
|
|
public static ProcessCommands(commands: string): string {
|
||
|
|
return `
|
||
|
|
echo "start"
|
||
|
|
${commands}
|
||
|
|
echo "end"`;
|
||
|
|
}
|
||
|
|
}
|