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

index a02ab310855ae82b2c7c706532af2ed31ec58b81..04ce6734eca5da6b58fe981933fac2c08a7c444e 100755 (executable)
@@ -59,10 +59,11 @@ COMMANDS='backup_keys claim help keys orgpull'
 
 _check_args_n() {
     _N_MAX_ARGS="$1"
+    shift 1
     if [ "$#" -lt "${_N_MAX_ARGS}" ]; then
         error_exit "missing arguments ($# instead of ${_N_MAX_ARGS}."
     fi
-    shift $(calc "${_N_MAX_ARGS} + 1" | cut -f2)
+    shift "${_N_MAX_ARGS}"
     if [ "$#" -gt 0 ]; then
         _MSG="unexpected arguments beyond expected number: $@"
         error_exit "${_MSG}"