From d3a1317297c8eb5294aa8ae5f7757191f2400f13 Mon Sep 17 00:00:00 2001 From: TotallyNotElite <1yourexperiment@protonmail.com> Date: Fri, 8 Jun 2018 17:50:50 +0200 Subject: [PATCH] Fix install-all and update --- install-all | 20 ++------------------ update | 6 +----- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/install-all b/install-all index 12f79f6e..33e5f37b 100755 --- a/install-all +++ b/install-all @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + rm ../install-all # @@ -12,24 +14,6 @@ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && sudo apt update && sud git fetch;git pull origin;git submodule update --remote --recursive -# -# Install libglez -# - -cd libglez;mkdir build;cd build;cmake ..;make;sudo make install;cd ..;cd .. - -# -# Install libxoverlay -# - -cd libxoverlay;mkdir build;cd build;cmake ..;make;sudo make install;cd ..;cd .. - -# -# Install Simple-ipc -# - -cd simple-ipc;mkdir build;cd build;cmake ..;make;sudo make install;cd ..;cd .. - # # Build cathook # diff --git a/update b/update index b366214b..fc778c78 100755 --- a/update +++ b/update @@ -2,10 +2,6 @@ sudo echo Elevated #Get updated source code git fetch;git pull origin;git submodule update --remote --recursive -#Update dependencies -cd ./libglez/build; cmake ..; make;sudo make install;cd ..; cd .. -cd ./libxoverlay/build; cmake ..; make;sudo make install;cd ..; cd .. -cd ./simple-ipc/build; cmake ..; make;sudo make install;cd ..; cd .. #Update cathook cd build; cmake ..; make; cd ..; cd .. -printf "\n\n";printf '\e[1;34m%-6s\e' "Cathook update complete!";printf "\n\n" \ No newline at end of file +printf "\n\n";printf '\e[1;34m%-6s\e' "Cathook update complete!";printf "\n\n"