Quick-Phone-Setup/install-requirements-rhel.sh
2024-09-27 14:42:57 -04:00

19 lines
No EOL
379 B
Bash

clear
echo "Installing ADB and Golang..."
sudo dnf install adb golang -y
clear
echo "Completed."
sleep 2
echo "Downloading FDroidCl..."
mkdir ./temp/ && cd ./temp/
wget https://github.com/mvdan/fdroidcl/releases/download/v0.7.0/fdroidcl_v0.7.0_linux_amd64
chmod +x ./fdroidcl_v0.7.0_linux_amd64
./fdroidcl_v0.7.0_linux_amd64 update
cd ../
clear
echo "Completed."
sleep 2
clear