From f8258b90a7ea23b81c8e05cae4cfdaa325996e6d Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 12 Dec 2022 15:25:35 +0100 Subject: backup-upload: create directory later --- backup-upload | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'backup-upload') diff --git a/backup-upload b/backup-upload index 8ed4149..110ef25 100644 --- a/backup-upload +++ b/backup-upload @@ -45,10 +45,6 @@ $WaitFullyConnected; $RandomDelay $BackupRandomDelay; } -:if ([ $MkDir $0 ] = false) do={ - $LogPrintExit2 error $0 ("Failed creating directory!") true; -} - # filename based on identity :local FileName [ $CharacterReplace ($Identity . "." . $Domain) "." "_" ]; :local FilePath ($0 . "/" . $FileName); @@ -56,6 +52,10 @@ $WaitFullyConnected; :local ConfigFile "none"; :local Failed 0; +:if ([ $MkDir $0 ] = false) do={ + $LogPrintExit2 error $0 ("Failed creating directory!") true; +} + # binary backup :if ($BackupSendBinary = true) do={ /system/backup/save encryption=aes-sha256 name=$FilePath password=$BackupPassword; -- cgit v1.2.3-54-g00ecf