Update Wed Jun 2 04:41:47 AM CDT 2021
This commit is contained in:
parent
3ae1b66676
commit
522598bafb
|
@ -468,12 +468,17 @@ fix_bad_apt_hash (){
|
||||||
}
|
}
|
||||||
|
|
||||||
install_atom () {
|
install_atom () {
|
||||||
apt_update && apt_update_complete
|
if [ -f /usr/bin/atom ]
|
||||||
echo -e "\n $greenplus installing atom"
|
then
|
||||||
eval wget -qO- https://atom.io/download/deb -O /tmp/atom.deb >/dev/null 2>&1
|
echo -e "\n $greenminus atom already installed - skipping"
|
||||||
eval dpkg -i /tmp/atom.deb >/dev/null 2>&1
|
else
|
||||||
eval rm -f /tmp/atom.deb
|
apt_update && apt_update_complete
|
||||||
eval apt -y --fix-broken install >/dev/null 2>&1
|
echo -e "\n $greenplus installing atom"
|
||||||
|
eval wget -qO- https://atom.io/download/deb -O /tmp/atom.deb >/dev/null 2>&1
|
||||||
|
eval dpkg -i /tmp/atom.deb >/dev/null 2>&1
|
||||||
|
eval rm -f /tmp/atom.deb
|
||||||
|
eval apt -y --fix-broken install >/dev/null 2>&1
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install_sublime () {
|
install_sublime () {
|
||||||
|
|
Loading…
Reference in New Issue