This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| echo "=== Updating system ===" | |
| sudo apt update -y && sudo apt upgrade -y | |
| echo "=== Installing prerequisites ===" | |
| sudo apt install -y curl wget git gpg software-properties-common apt-transport-https unzip lsb-release | |
| # ------------------------------------------------------------- |