From 6cd970711f07f15c782accd81d94253e062cdd91 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Wed, 10 Apr 2019 19:39:01 -0700 Subject: [PATCH] Fix incorrect command --- bin/backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/backup b/bin/backup index d0b6eba..ad1a712 100644 --- a/bin/backup +++ b/bin/backup @@ -46,8 +46,8 @@ EXTRA_RSYNC_OPTS = { # ----- File Options ----- CONFIG_DIR = "/etc/rbackup" FILE_OPTS = [ - f"--include-from={CONFIG_DIR}/etc-include.conf", - f"--include-from={CONFIG_DIR}/system-include.conf", + f"--files-from={CONFIG_DIR}/etc-include.conf", + f"--files-from={CONFIG_DIR}/system-include.conf", f"--exclude-from={CONFIG_DIR}/home-exclude.conf", ]