9 lines
200 B
Bash
9 lines
200 B
Bash
#!/bin/bash
|
|
|
|
whiptail --msgbox "Installing GA Prerequisites" 7 31
|
|
apt install npm git jq
|
|
if [ $? != 0 ]; then
|
|
echo -e "\033[0;31mCould not install GermanAirlines specific prerequisites"
|
|
exit 1
|
|
fi
|