16 lines
311 B
Plaintext
Executable File
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
|
|
|