From 7384bb31260f2bfa264ad8b82d64801146924e1e Mon Sep 17 00:00:00 2001 From: everest Date: Tue, 12 Apr 2022 20:46:59 +0000 Subject: [PATCH] Update glacier-cache.sh --- scripts/glacier-cache.sh | 32 ++------------------------------ 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/scripts/glacier-cache.sh b/scripts/glacier-cache.sh index ee0af05..c074ab7 100644 --- a/scripts/glacier-cache.sh +++ b/scripts/glacier-cache.sh @@ -5,39 +5,11 @@ # Require the script to be run as root echo "[ ? ] Enter package name:" && read input echo "[ i ] Installing $input.tar.gz" -echo "Checking world..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO1/$input.tar.gz +echo "Checking world..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/world/$input.tar.gz if [ "$?" != "0" ]; then echo "[ i ] Not in world." 1>&2 + exit 1 fi -echo "Checking galaxy..." && wget https://gitub.com/everest-linux/glacier-pkgs/raw/main/$GREPO2/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in galaxy." 1>&2 -fi -echo "Checking universe..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO3/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in universe." 1>&2 -fi -echo "Checking multiverse..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO4/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in multiverse." 1>&2 -fi -echo "Checking world-testing..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO5/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in world-testing." 1>&2 -fi -echo "Checking galaxy-testing..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO6/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in galaxy-testing." 1>&2 -fi -echo "Checking universe-testing..." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO7/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in universe-testing." 1>&2 -fi -echo "Checking multiverse-testing.." && wget https://github.com/everest-linux/glacier-pkgs/raw/main/$GREPO8/$input.tar.gz -if [ "$?" != "0" ]; then - echo "[ i ] Not in multiverse-testing." 1>&2 -fi - echo "[ i ] Unpacking $input.tar.gz..." mkdir -v $input && mv -v $input.tar.gz $input && cd $input tar -xvf $input.tar.gz