diff --git a/packages/core/src/command.ts b/packages/core/src/command.ts index 2235a464..a3d241b6 100644 --- a/packages/core/src/command.ts +++ b/packages/core/src/command.ts @@ -28,7 +28,11 @@ export function issue(name: string, message: string) { const CMD_PREFIX = '##[' class Command { - constructor(command: string, properties: {[key: string]: string}, message: string) { + constructor( + command: string, + properties: {[key: string]: string}, + message: string + ) { if (!command) { command = 'missing.command' } @@ -80,4 +84,4 @@ function escape(s: string): string { .replace(/\n/g, '%0A') .replace(/]/g, '%5D') .replace(/;/g, '%3B') -} \ No newline at end of file +}