Skip to content

Commit da095f1

Browse files
Apply suggestions
1 parent dcf8e41 commit da095f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/modules/versioning/ruby/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const getNewValue = ({
105105
if (isVersion(currentValue)) {
106106
newValue =
107107
currentValue.startsWith('v') && !newVersion.startsWith('v')
108-
? 'v' + newVersion
108+
? `v${newVersion}`
109109
: newVersion;
110110
} else if (currentValue.replace(regEx(/^=\s*/), '') === currentVersion) {
111111
newValue = currentValue.replace(currentVersion, newVersion);

0 commit comments

Comments
 (0)