QO100Tx_Rx/scripts/prepare_mono
2025-10-20 20:11:21 +02:00

16 lines
311 B
Plaintext
Executable File

# update to the correct and actual mono version
echo "search for ubuntu version"
# check if we are on Ubuntu
set -e
sudo apt install gnupg ca-certificates -y
sudo apt-get update -y
sudo apt-get install mono-complete -y
sudo apt-get autoremove -y
echo "Mono installation/upgrade complete for $repo."
exit 0