From 1625d229a3ecaf82bd19b1b33392cea911a9b626 Mon Sep 17 00:00:00 2001 From: Marco Cetica Date: Mon, 16 Oct 2023 09:34:35 +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 c46dba4..d9781b8 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") +deps=("rsync" "tar" "gpg", "md5sum") for dep in "${deps[@]}"; do if ! command -v "$dep" > /dev/null 2>&1; then