fix: help command stops displaying an error (#84)

This commit is contained in:
v4n
2025-08-28 20:40:47 +03:00
committed by GitHub
parent a9a17a7617
commit c3d76c625c
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VERSION="0.6.8" VERSION="0.6.9"
# --- Globals --- # --- Globals ---
@@ -1954,6 +1954,9 @@ function main() {
"update"|"up") "update"|"up")
self_update self_update
;; ;;
"help"|"h"|"-h"|"--help")
$display_help
;;
*) *)
log ERROR "Unknown command: $command" log ERROR "Unknown command: $command"
$display_help $display_help
+1 -1
View File
@@ -1 +1 @@
0.6.8 0.6.9