Skip to content

Commit

Permalink
Update Rsync.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ohmydevops authored Dec 22, 2023
1 parent 685ed90 commit 2871826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backup/Rsync.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ protected function setupRsync(array $conf)
$this->passwordFile = Util\Arr::getValue($conf, 'passwordFile', '');
$this->excludes = Util\Str::toList(Util\Arr::getValue($conf, 'exclude', ''), ':');
$this->delete = Util\Str::toBoolean(Util\Arr::getValue($conf, 'delete', ''), false);
$this->isDirSync = Util\Str::toBoolean(Util\Arr::getValue($conf, 'dirsync', ''), false);
$this->isDirSync = Util\Str::toBoolean(Util\Arr::getValue($conf, 'isDirSync', ''), false);
}
}

Expand Down

0 comments on commit 2871826

Please sign in to comment.