Skip to content

Commit

Permalink
pkill does not have -a flag
Browse files Browse the repository at this point in the history
This fixes an error in the documentation
  • Loading branch information
MitchBradley committed Mar 10, 2020
1 parent 1e04dad commit 2fbf0aa
Showing 1 changed file with 2 additions and 2 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

0 comments on commit 2fbf0aa

Please sign in to comment.