home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 3 Apr 2025 00:56:52 +0000 (02:56 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 3 Apr 2025 00:56:52 +0000 (02:56 +0200)
testing/home/desktop/.local/bin/borgplom

index 12f3891ff7aa4d0317f7ea026352e011ec817d8e..003090f8676061b22bd9294c91ee6f9137579e5e 100755 (executable)
@@ -59,10 +59,9 @@ COMMANDS='claim help keys orgpull'
 
 _check_args_beyond() {
     _N_MAX_ARGS="$1"
-    _CMD="$2"
-    shift $(calc "${_N_MAX_ARGS} + 2" | cut -f2)
+    shift $(calc "${_N_MAX_ARGS} + 1" | cut -f2)
     if [ "$#" -gt 0 ]; then
-        _MSG="unexpected arguments beyond command '${_CMD}': $@"
+        _MSG="unexpected arguments beyond command: $@"
         error_exit "${_MSG}"
     fi
 }
@@ -227,4 +226,5 @@ done
 if [ -z "${CMD}" ]; then
     error_exit_with_usage "unknown command: ${1}"
 fi
+shift 1
 "CMDFNC_${CMD}" $@