Some checks failed
My Build All / build_windows (push) Has been cancelled
My Build All / build_linux_portable (push) Has been cancelled
My Build All / build_linux_appimage (push) Has been cancelled
My Build All / build_macos (push) Has been cancelled
My Build All / Publish release assets (push) Has been cancelled
Shellcheck / Shellcheck (push) Has been cancelled
15 lines
438 B
Bash
Executable file
15 lines
438 B
Bash
Executable file
#!/bin/bash
|
|
# Update and upgrade all system packages
|
|
apt update
|
|
apt upgrade -y
|
|
|
|
build_linux="./build_linux.sh -u"
|
|
echo "-----------------------------------------"
|
|
echo "Running ${build_linux}..."
|
|
echo "-----------------------------------------"
|
|
${build_linux}
|
|
|
|
echo "------------------------------"
|
|
echo "Installing missing packages..."
|
|
echo "------------------------------"
|
|
apt install -y libgl1-mesa-dev m4 autoconf libtool
|