From e930db5a8122e125b47cdaf715a1c5a8500750cb Mon Sep 17 00:00:00 2001 From: Dennis Erdmann Date: Thu, 7 Jul 2022 18:22:37 +0200 Subject: [PATCH] fix: add trailing slash to download files (#2) --- recipe/files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/files.php b/recipe/files.php index f1cdd5e..68678e2 100644 --- a/recipe/files.php +++ b/recipe/files.php @@ -5,7 +5,7 @@ // Retrieve files from remote (rsync) desc('Downloads the files from remote.'); task('files:retrieve', static function () { - download("{{release_or_current_path}}/files", 'files/'); + download("{{release_or_current_path}}/files/", 'files/'); info('Download of files/ directory completed'); });