home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 13:40:33 +0000 (15:40 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 13:40:33 +0000 (15:40 +0200)
testing/home/desktop/.local/bin/borgplom

index 1ac2ce253ded802c49a3c05a6742cb1f97ef31e7..0a648f0deb75e8895b0af855c11d69e2fd7dda39 100755 (executable)
@@ -30,11 +30,9 @@ _check_args_n() {
     shift 2
     if [ "$#" -lt "${_N_MIN_ARGS}" ]; then
         error_exit_with_usage "missing arguments ($# instead of ${_N_MAX_ARGS})."
-    fi
-    shift "${_N_MAX_ARGS}"
-    if [ "$#" -gt 0 ]; then
-        _MSG="unexpected arguments beyond expected number: $@"
-        error_exit_with_usage "${_MSG}"
+    elif [ "$#" -gt "${_N_MAX_ARGS}" ]; then
+        shift "${_N_MAX_ARGS}"
+        error_exit_with_usage "unexpected arguments beyond expected number: $@"
     fi
 }