From a94ed2f7232fcd3373c54f595594d74c493d4d2a Mon Sep 17 00:00:00 2001 From: everest Date: Wed, 9 Mar 2022 01:31:27 +0000 Subject: [PATCH] Delete glacier-install.sh --- glacier-install.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 glacier-install.sh diff --git a/glacier-install.sh b/glacier-install.sh deleted file mode 100644 index 6ce131d..0000000 --- a/glacier-install.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# glacier-install -# Script used to fetch installation scripts and run them - -echo "[ ? ] Enter package name:" && read input -echo "[ i ] Downloading source tarball for $input..." -wget https://github.com/everest-linux/glacier-pkgs/raw/main/pkgs/$input.tar.gz -echo "[ i ] Unpacking $input.tar.gz..." -tar -xvf $input.tar.gz -cd $input -chmod +x INSTALL.sh -./INSTALL.sh -rm $input.tar.gz -echo "Done."