Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
fix(migrate): fix the bad quote
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot authored Oct 17, 2016
1 parent 0dc89ac commit ece4390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/switcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var spawn = require('child_process').spawn

function Switcher (version, currentVersion) {
var installCmd = 'nvm install ' + version;
installCmd += (currentVersion) ? ' --reinstall-packages-from=" + currentVersion : '';
installCmd += (currentVersion) ? ' --reinstall-packages-from=' + currentVersion : '';

var binaries = {
nvm: {
Expand Down

0 comments on commit ece4390

Please sign in to comment.