From 131d9c89cbf059e040e065b9d4d853da36fa4eb2 Mon Sep 17 00:00:00 2001 From: Marco Cetica Date: Mon, 16 Oct 2023 09:35:33 +0200 Subject: [PATCH] Fixed dependency bug --- backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.sh b/backup.sh index d9781b8..e92a063 100755 --- a/backup.sh +++ b/backup.sh @@ -34,7 +34,7 @@ set -e # Check if dependencies are installed missing_dep=0 -deps=("rsync" "tar" "gpg", "md5sum") +deps=("rsync" "tar" "gpg" "md5sum") for dep in "${deps[@]}"; do if ! command -v "$dep" > /dev/null 2>&1; then