Skip to content

Commit 9ac8385

Browse files
authored
Did not actually assign string addition back to the original install string. Fixed (#9)
1 parent 0ed48fd commit 9ac8385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const generateJazzyInstallCommand = () => {
2020
let gemInstall = "sudo gem install jazzy"
2121

2222
if (jazzyVersion) {
23-
gemInstall + ` -v ${jazzyVersion}`
23+
gemInstall += ` -v ${jazzyVersion}`
2424
}
2525

2626
return gemInstall

0 commit comments

Comments
 (0)