13 lines
234 B
Bash
Executable File
13 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
whiptail --msgbox "Installing GA Prerequisites" 7 31
|
|
apt install npm git jq -y
|
|
npm i -g yarn
|
|
npm i -g n
|
|
n 12
|
|
if [ $? != 0 ]; then
|
|
echo -e "\033[0;31mCould not install GermanAirlines specific prerequisites"
|
|
exit 1
|
|
fi
|
|
|