Correct check to actually print output when major debug is set to 1.

This commit is contained in:
Sebastian Roth
2021-03-07 09:33:58 -06:00
parent 5b70187ed8
commit 4c5cdcffd8

View File

@@ -1837,7 +1837,7 @@ debugEcho() {
esac
}
majorDebugEcho() {
[[ $ismajordebug -gt 1 ]] && echo "$*"
[[ $ismajordebug -ge 1 ]] && echo "$*"
}
majorDebugPause() {
[[ ! $ismajordebug -gt 0 ]] && return