Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton authored Mar 28, 2017
1 parent f7846db commit caa256e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,22 +164,23 @@ Check out an example configuration file [here](https://github.com/cncjs/cncjs/bl
},
"commands": [
{
"text": "Update (root user)",
"command": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -a -f cnc"
"title": "Update (root user)",
"commands": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -a -f cnc"
},
{
"text": "Update (non-root user)",
"command": "npm install -g cncjs@latest; pkill -a -f cnc"
"title": "Update (non-root user)",
"commands": "npm install -g cncjs@latest; pkill -a -f cnc"
},
{
"text": "Reboot",
"command": "sudo /sbin/reboot"
"title": "Reboot",
"commands": "sudo /sbin/reboot"
},
{
"text": "Shutdown",
"command": "sudo /sbin/shutdown"
"title": "Shutdown",
"commands": "sudo /sbin/shutdown"
}
],
"events": [],
"macros": [],
"users": []
}
Expand Down

0 comments on commit caa256e

Please sign in to comment.