From 62107ed611acd0e45749ce99aba853aab43fee82 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Mon, 27 May 2019 06:13:03 -0600 Subject: [PATCH] fixed missing space in sqldumpdir command --- backup_new.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup_new.sh b/backup_new.sh index c52a7c9..31825fa 100755 --- a/backup_new.sh +++ b/backup_new.sh @@ -384,7 +384,7 @@ printf "${cyan}[%s] -- [INFO] ${yellow}%s${cyan} imported --${norm}\n" \ printf "${cyan}[%s] -- [INFO] Dumping SQL databases --${norm}\n" \ "$(stamp)" >> "$logFile" # create temporary directory to dump files before borg backup -if ! sqlDumpDir=$( mktemp -d 2>>"$logFile"); then +if ! sqlDumpDir=$( mktemp -d 2>>"$logFile" ); then exitError 111 "Could not create temporary directory to dump SQL files" fi # set cleanup flag