Skip to content

Commit

Permalink
Merge pull request #577 from cncjs/MitchBradley-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton committed Mar 10, 2020
2 parents 1e04dad + aeaa7cd commit 8914f17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -239,11 +239,11 @@ See https://github.com/cncjs/cncjs/issues/242#issuecomment-352294549 for a detai
"commands": [
{
"title": "Update (root user)",
"commands": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -a -f cncjs"
"commands": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -f cncjs"
},
{
"title": "Update (non-root user)",
"commands": "npm install -g cncjs@latest; pkill -a -f cncjs"
"commands": "npm install -g cncjs@latest; pkill -f cncjs"
},
{
"title": "Reboot",
Expand Down
4 changes: 2 additions & 2 deletions examples/.cncrc
Expand Up @@ -22,11 +22,11 @@
"commands": [
{
"title": "Update (root user)",
"commands": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -a -f cncjs"
"commands": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -f cncjs"
},
{
"title": "Update (non-root user)",
"commands": "npm install -g cncjs@latest; pkill -a -f cncjs"
"commands": "npm install -g cncjs@latest; pkill -f cncjs"
},
{
"title": "Reboot",
Expand Down

0 comments on commit 8914f17

Please sign in to comment.