Skip to content

Commit

Permalink
Fix appify warn function
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Feb 14, 2025
1 parent d6499e2 commit f420a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/common.include
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cfgdir="$basedir/configs"

cecho() { color=$1; shift; echo -e "\033[${color}m$*\033[0m"; }
die() { cecho '0;31' "[ERROR] $*" >&2; exit 1; }
die() { cecho '0;33' "[WARNING] $*" >&2; exit 1; }
warn() { cecho '0;33' "[WARNING] $*" >&2; }
step() { cecho '1;33' "--> $STEP_PREFIX$*"; }

revise_file() {
Expand Down

0 comments on commit f420a56

Please sign in to comment.