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
| #!/bin/bash | |
| CREW_INSTALLER_VERSION=2025120401 | |
| # Exit on fail. | |
| set -eE | |
| RESET='\e[0m' | |
| # Simplify colors and print errors to stderr (2). | |
| echo_error() { echo -e "\e[1;91m${*}${RESET}" >&2; } # Use Light Red for errors. | |
| echo_info() { echo -e "\e[1;33m${*}${RESET}" >&1; } # Use Yellow for informational messages. |