We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e4e13d commit 773da5bCopy full SHA for 773da5b
1 file changed
tools/fullbuild.sh
@@ -31,7 +31,6 @@ msg_common(){
31
local _msg_opts=("-a" "fullbuild" "-s" "5") _type="${1}"
32
shift 1
33
[[ "${1}" = "-n" ]] && _msg_opts+=("-o" "-n") && shift 1
34
- [[ "${msgdebug}" = true ]] && _msg_opts+=("-x")
35
[[ "${nocolor}" = true ]] && _msg_opts+=("-n")
36
_msg_opts+=("${_type}" "${@}")
37
"${script_path}/tools/msg.sh" "${_msg_opts[@]}"
@@ -45,13 +44,6 @@ msg_info() { msg_common info "${@}"; }
45
44
# ${1}: message string
46
msg_warn() { msg_common warn "${@}"; }
47
48
-# Show an debug message
49
-# ${1}: message string
50
-msg_debug() {
51
- [[ "${debug}" = true ]] && msg_common debug "${@}"
52
- return 0
53
-}
54
-
55
# Show an ERROR message then exit with status
56
57
# ${2}: exit code number (with 0 does not exit)
0 commit comments