From 69b687989db7b645a28e863d4ccaadfc48cfe823 Mon Sep 17 00:00:00 2001 From: jekkos Date: Tue, 22 Aug 2017 09:00:26 +0200 Subject: [PATCH] Fix travis build (#1458) --- bin/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.php b/bin/install.php index 747bcd3c9..76a71fdd9 100755 --- a/bin/install.php +++ b/bin/install.php @@ -253,7 +253,7 @@ class Installer foreach ($iterator as $file) { if ($file->isDir()) { - @mkdir($dst . '/' . $iterator->getSubPathName()), 0755); + @mkdir($dst . '/' . $iterator->getSubPathName(), 0755); } else { $success = copy($file, $dst . '/' . $iterator->getSubPathName());