From 91eafd5b728e42795be4996e27db56c05ad6c6c0 Mon Sep 17 00:00:00 2001 From: Kajetan Date: Wed, 22 Jun 2022 17:34:37 +0200 Subject: [PATCH] Update Downloader.php (#200) --- testing/src/Downloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/src/Downloader.php b/testing/src/Downloader.php index 1177cf75..1ea4a728 100644 --- a/testing/src/Downloader.php +++ b/testing/src/Downloader.php @@ -42,7 +42,7 @@ public function download(SystemInfo $systemInfo): void $targetPath = getcwd() . DIRECTORY_SEPARATOR . $systemInfo->temporalServerExecutable; $this->filesystem->copy($pathToExtractedAsset . DIRECTORY_SEPARATOR . $systemInfo->temporalServerExecutable, $targetPath); - $this->filesystem->chmod($targetPath, 755); + $this->filesystem->chmod($targetPath, 0755); $this->filesystem->remove($pathToExtractedAsset); }