Skip to content

Instantly share code, notes, and snippets.

@dostiharise
Last active November 27, 2016 10:38
Show Gist options
  • Save dostiharise/efa98dde608bcebe72b667f9f090858d to your computer and use it in GitHub Desktop.
Save dostiharise/efa98dde608bcebe72b667f9f090858d to your computer and use it in GitHub Desktop.
Upgrade Atom
#!/bin/bash
# Update atom from downloaded deb file
rm -f /tmp/atom.deb
wget -o /tmp/atom.deb https://atom.io/download/deb
dpkg --install /tmp/atom.deb
echo "***** apm upgrade - to ensure we update all apm packages *****"
apm upgrade --confirm false
atom
exit 0
## Installion :
##
## $ curl -s https://gist.githubusercontent.com/dostiharise/efa98dde608bcebe72b667f9f090858d/raw | bash
##
## Reference - http://stackoverflow.com/a/26759982/1300982
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment