fix: tmpdir error msg truncates logfile
This commit is contained in:
+1
-1
@@ -321,7 +321,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
|
||||
printf "${cyan}[%s] -- [INFO] SQL dump files will be temporarily stored in:" \
|
||||
|
||||
Reference in New Issue
Block a user