modulecmd: swap meaning of option --debug and --verbose

This commit is contained in:
2024-06-13 14:59:43 +02:00
parent 7ea1917031
commit 03caddd42d
+4 -4
View File
@@ -3453,12 +3453,12 @@ while (( $# > 0 )); do
print_help 'version'
;;
--debug )
debug(){
echo "DEBUG: " "$@" 1>&2
}
set -x
;;
--verbose )
set -x
debug(){
echo "INFO: " "$@" 1>&2
}
;;
'' )
;;