Skip to content

Commit

Permalink
Remove unneccessary quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed May 26, 2020
1 parent ddfe6ef commit 3377b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/promote_release.js
Expand Up @@ -246,7 +246,7 @@ class ReleasePromotion {
'../node_modules/.bin/git-secure-tag' + (isWindows ? '.cmd' : '')
);

const releaseInfo = isLTS ? `'${ltsCodename}' (LTS)` : '(Current)';
const releaseInfo = isLTS ? `${ltsCodename} (LTS)` : '(Current)';
const secureTagOptions = [
`v${version}`,
this.getCommitSha(),
Expand Down

0 comments on commit 3377b44

Please sign in to comment.