Skip to content

Commit 0702242

Browse files
committed
Remove unneccessary quotes
1 parent 2c24171 commit 0702242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/promote_release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class ReleasePromotion {
246246
'../node_modules/.bin/git-secure-tag' + (isWindows ? '.cmd' : '')
247247
);
248248

249-
const releaseInfo = isLTS ? `'${ltsCodename}' (LTS)` : '(Current)';
249+
const releaseInfo = isLTS ? `${ltsCodename} (LTS)` : '(Current)';
250250
const secureTagOptions = [
251251
`v${version}`,
252252
this.getCommitSha(),

0 commit comments

Comments
 (0)