From 4267cb5b32a6e6f60f446346416127a1cc713ac1 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 4 Sep 2024 10:37:16 +0900 Subject: [PATCH] Bug Fix in gitea backup for temp dir check --- borg.backup.gitea.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borg.backup.gitea.sh b/borg.backup.gitea.sh index b2c72e4..46c4c8a 100755 --- a/borg.backup.gitea.sh +++ b/borg.backup.gitea.sh @@ -34,7 +34,7 @@ if [ -z "${GITEA_WORKING_DIR}" ]; then GITEA_WORKING_DIR="/var/tmp/gitea/"; fi; # general temp folder for temporary data storage, this is not working output folder -if [ -z "${GITEA_TEMP_DIR}"]; then +if [ -z "${GITEA_TEMP_DIR}" ]; then GITEA_TEMP_DIR="/var/tmp"; fi; if [ -z "${GITEA_BIN}" ]; then