From 31013eda2409c716f23880257033c0f3ebe6b497 Mon Sep 17 00:00:00 2001 From: Torsten Franz Date: Mon, 24 Mar 2014 13:00:13 +0100 Subject: [PATCH] change permissions cause it is not necessary to habe execute permissions --- module/VisualCeption.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/VisualCeption.php b/module/VisualCeption.php index d9da571..4312eb4 100644 --- a/module/VisualCeption.php +++ b/module/VisualCeption.php @@ -33,7 +33,7 @@ private function init () } if (! is_dir($this->referenceImageDir)) { - mkdir($this->referenceImageDir, 0777); + mkdir($this->referenceImageDir, 0666); } } @@ -62,7 +62,7 @@ private function getScreenshotPath ($identifier) { $debugDir = \Codeception\Configuration::logDir() . 'debug/tmp/'; if (! is_dir($debugDir)) { - mkdir($debugDir, 0777); + mkdir($debugDir, 0666); } return $debugDir . $this->getScreenshotName($identifier); }