From 6996ed87616895da42e5ca9fe62d96cb6000c66a Mon Sep 17 00:00:00 2001 From: Botspot Date: Mon, 14 Dec 2020 13:49:25 -0600 Subject: [PATCH] steam and sublime text fix box86 installation --- apps/Steam/install-32 | 2 ++ apps/Sublime Text/install-32 | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/Steam/install-32 b/apps/Steam/install-32 index ff9f1e2..d3e7165 100755 --- a/apps/Steam/install-32 +++ b/apps/Steam/install-32 @@ -14,6 +14,8 @@ if [ ! -f /usr/local/bin/box86 ];then wget -qO- https://raw.githubusercontent.com/Botspot/box86-updater/main/update-box86 | bash if [ ! -f /usr/local/bin/box86 ];then error "Box86 failed to install somehow!" + else + echo "installed" > "${DIRECTORY}/data/status/Box86" fi fi diff --git a/apps/Sublime Text/install-32 b/apps/Sublime Text/install-32 index 80055fd..c44a201 100755 --- a/apps/Sublime Text/install-32 +++ b/apps/Sublime Text/install-32 @@ -12,10 +12,11 @@ if [ ! -f /usr/local/bin/box86 ];then wget -qO- https://raw.githubusercontent.com/Botspot/box86-updater/main/update-box86 | bash if [ ! -f /usr/local/bin/box86 ];then error "Box86 failed to install somehow!" + else + echo "installed" > "${DIRECTORY}/data/status/Box86" fi fi - wget https://download.sublimetext.com/Sublime%20Text%202.0.2.tar.bz2 -O ~/sublime-text-2.tar.bz2 || error 'Failed to download!' tar -xf ~/sublime-text-2.tar.bz2 || error 'Failed to extract!' rm -f sublime-text-2.tar.bz2