From 20bebeb7decb88a44a3f93135ee253cc154dd79f Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 14 Oct 2018 16:27:26 +0200 Subject: [PATCH] Fix in file system configuration [skip ci] --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index db7a7286df..67e8165fc4 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -34,7 +34,7 @@ $exportDisk = [ // setting the SFTP host is enough to trigger the SFTP option. if ('' !== env('SFTP_HOST', '')) { array_unshift($uploadDisk['disks'], 'sftp-upload'); - array_unshift($exportDisk['disks'], 'sftp-upload'); + array_unshift($exportDisk['disks'], 'sftp-export'); } return [