From de04351074d963535fad55b0852424734e876771 Mon Sep 17 00:00:00 2001 From: Ducky Date: Sat, 30 Mar 2024 16:31:52 +0000 Subject: [PATCH] sh.zio.backup: attempt to fix bad formatting error --- usr/local/bin/sh.zio.backup | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/usr/local/bin/sh.zio.backup b/usr/local/bin/sh.zio.backup index bf439ca..cc23a07 100755 --- a/usr/local/bin/sh.zio.backup +++ b/usr/local/bin/sh.zio.backup @@ -82,11 +82,7 @@ function invoke_restic() { while true; do exec 3>&1 - restic_out="$($restic_path" \ - --cache-dir "$cache_dir" \ - --password-file "$restic_repo_passwd_file" \ - --repo "$(cat $restic_repo_file)" \ - $command $args | tee /dev/fd/3)" + restic_out="$($restic_path" --cache-dir "$cache_dir" --password-file "$restic_repo_passwd_file" --repo "$(cat $restic_repo_file)" $command $args | tee /dev/fd/3)" if [[ $? == 0 ]]; then break