Delete glacier-install.sh

This commit is contained in:
everest
2022-03-09 01:31:27 +00:00
committed by GitHub
parent 81530ec040
commit a94ed2f723

View File

@@ -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."