1
0
mirror of https://github.com/sixfab/Sixfab_PPP_Installer synced 2025-04-15 08:33:41 +00:00

fixed apt header bug

This commit is contained in:
Yasin Kaya 2020-11-25 17:09:14 +03:00
parent c037d1e5f4
commit 492fb87636

@ -64,6 +64,9 @@ esac
colored_echo "Checking requiremments..."
colored_echo "Updating headers..."
sudo apt-get update
colored_echo "Installing python3 if it is required..."
if ! [ -x "$(command -v python3)" ]; then
sudo apt-get install python3 -y