Prevent wrong debug return

此提交包含在:
2023-01-13 18:28:06 -05:00
父節點 dd603ab7f3
當前提交 5d9553408e

查看文件

@@ -102,7 +102,7 @@ printHelp() {
}
# Helpers
debug() { (( DEBUG )) && [[ $# -gt 0 ]] && echo "Debug: $*"; }
debug() { (( DEBUG )) && echo "Debug: $*"; }
err() { echo "Error: $*" >&2; }
askOk() {
declare response
@@ -293,7 +293,6 @@ init() {
err "OS detection failed!"
exit 1
fi
;;
esac
debug "Using host platform: $ID $VERSION_ID"