fix: require_arg for --hdd-path, explicit event in stackAction, title separator, nextPruneLabel Sunday edge case

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-16 16:28:41 +01:00
parent 7ca52f88a2
commit 29be81f1be
5 changed files with 20 additions and 14 deletions
+3 -1
View File
@@ -312,7 +312,9 @@ parse_args() {
CUSTOMER_ID="$2"; shift 2 ;;
--self-signed-cert) SELF_SIGNED_CERT=true; shift ;;
--skip-filebrowser) SKIP_FILEBROWSER=true; shift ;;
--hdd-path) HDD_PATH="$2"; shift 2 ;;
--hdd-path)
require_arg "$1" "${2:-}"
HDD_PATH="$2"; shift 2 ;;
--dry-run) DRY_RUN=true; shift ;;
--debug) DEBUG_MODE=true; shift ;;
-h|--help) print_help; exit 0 ;;