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 | |
| # aerolab-doctor: verifica que una Mac tenga todo lo necesario para correr `aerolab`. | |
| # Si falta algo, ofrece instalarlo o te da un mensaje listo para pegarle a Bilu. | |
| set -u | |
| PASS="\033[32m✓\033[0m" | |
| FAIL="\033[31m✗\033[0m" | |
| WARN="\033[33m!\033[0m" | |
| BOLD="\033[1m" |