fixed apt header bug

This commit is contained in:
Yasin Kaya 2020-11-25 17:09:14 +03:00
parent c037d1e5f4
commit 492fb87636
1 changed files with 3 additions and 0 deletions

View File

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