Corrects minor spelling mistakes and script structure

This commit is contained in:
Spacery
2025-12-29 22:29:26 -04:00
parent d685d20e4b
commit 1ce24d71ff
+6 -6
View File
@@ -21,18 +21,18 @@ print_info() {
} }
print_success() { print_success() {
echo -e "${GREEN}[SUCESSO]${NC} $1" echo -e "${GREEN}[SUCCESS]${NC} $1"
echo "[SUCESSO] $1" >> "$LOG_FILE" echo "[SUCCESS] $1" >> "$LOG_FILE"
} }
print_warning() { print_warning() {
echo -e "${YELLOW}[AVISO]${NC} $1" echo -e "${YELLOW}[WARNING]${NC} $1"
echo "[AVISO] $1" >> "$LOG_FILE" echo "[WARNING] $1" >> "$LOG_FILE"
} }
print_error() { print_error() {
echo -e "${RED}[ERRO]${NC} $1" echo -e "${RED}[ERROR]${NC} $1"
echo "[ERRO] $1" >> "$LOG_FILE" echo "[ERROR] $1" >> "$LOG_FILE"
} }
print_step() { print_step() {