Last active
November 27, 2016 10:38
-
-
Save dostiharise/efa98dde608bcebe72b667f9f090858d to your computer and use it in GitHub Desktop.
Upgrade Atom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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