Skip to content

Commit

Permalink
Change to correct npm upgrade command. npm upgrade -> npm update. (#4032
Browse files Browse the repository at this point in the history
)
  • Loading branch information
DavidBachmann authored and arcanis committed Jul 28, 2017
1 parent cbb27f4 commit 8a1dfee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function getUpdateCommand(installationMethod: InstallationMethod): ?string {
}

if (installationMethod === 'npm') {
return 'npm upgrade --global yarn';
return 'npm update --global yarn';
}

if (installationMethod === 'chocolatey') {
Expand Down

0 comments on commit 8a1dfee

Please sign in to comment.