From 0069a07d1b2b3fc597b51af533d3c0fe1109b431 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Thu, 29 Aug 2024 10:09:53 +0100 Subject: [PATCH] bin: backup-restic, add '$@' to arguments --- bin/backup-restic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/backup-restic b/bin/backup-restic index cb9397b..35348ed 100755 --- a/bin/backup-restic +++ b/bin/backup-restic @@ -43,7 +43,7 @@ fi REPO=$PROFILE_ROOT/repo.txt SOURCES=$PROFILE_ROOT/sources.txt -CMDLINE="$CMDLINE -r $(cat $REPO) $(cat $SOURCES)" +CMDLINE="$CMDLINE -r $(cat $REPO) $(cat $SOURCES) $@" # echo "Backup:" # echo -e "\tPassword command: $RESTIC_PASSWORD_COMMAND"