Fix env path for windows

This commit is contained in:
René Preuß
2021-07-24 13:00:33 +02:00
parent 917af5c140
commit 26672908f1
4 changed files with 20 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ return [
'disks' => [
'local' => [
'driver' => 'local',
'root' => getenv('HOME') . DIRECTORY_SEPARATOR . '.bunny-cli',
'root' => bunny_cli_path(),
],
],
];