Skip to content

Commit dac4e31

Browse files
committed
fix(github-cli): replace template literal with single quotes (eslint mutation)
The local build's eslint --fix step rewrote a no-interpolation template literal to single quotes; CI's 'Fail build on mutation' guard caught that the mutation wasn't committed. Apply the fix.
1 parent d4c3aa0 commit dac4e31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/src/commands/github.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function makeGithubCommand(): Command {
7474
console.log('receiver can verify the HMAC:');
7575
console.log();
7676
if (webhookSecretArn) {
77-
console.log(` bgagent github set-webhook-secret # interactive prompt`);
77+
console.log(' bgagent github set-webhook-secret # interactive prompt');
7878
console.log();
7979
console.log(` Secret ARN: ${webhookSecretArn}`);
8080
} else {

0 commit comments

Comments
 (0)