Added repository update to setup.sh installer
This commit is contained in:
parent
b46cf2175d
commit
0a04adba42
1 changed files with 7 additions and 4 deletions
11
setup.sh
11
setup.sh
|
@ -79,13 +79,16 @@ echo "$(git rev-parse HEAD | head -c 10)" > /var/cache/fake-os/fake_version.txt
|
|||
#--------[ Install Dependencies ]--------#
|
||||
echo "Install FAKE//OS Dependencies"
|
||||
if [ "$(command -v paru)" ]; then
|
||||
paru --noconfirm -S curl figlet git lolcat rsync perl sudo vim
|
||||
paru -Syyy
|
||||
paru --noconfirm -S curl figlet git lolcat rsync perl sudo unzip vim
|
||||
elif [ "$(command -v pacman)" ]; then
|
||||
pacman --noconfirm -S curl figlet git lolcat rsync perl sudo vim
|
||||
pacman -Syyy
|
||||
pacman --noconfirm -S curl figlet git lolcat rsync perl sudo unzip vim
|
||||
elif [ "$(command -v apt)" ]; then
|
||||
apt -y install curl figlet git lolcat rsync perl sudo vim
|
||||
apt update
|
||||
apt -y install curl figlet git lolcat rsync perl sudo unzip vim
|
||||
elif [ "$(command -v apk)" ]; then
|
||||
apk add curl figlet git rsync perl sudo vim
|
||||
apk add curl figlet git rsync perl sudo unzip vim
|
||||
fi
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue