From 4ecdcdb9593fae69c2d3db881fa4c7a326348dc0 Mon Sep 17 00:00:00 2001 From: Gregor Harlan Date: Sun, 7 Apr 2019 20:27:47 +0200 Subject: [PATCH] macos-Meta-Dateien ignorieren closes #34 --- deployer/tasks/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployer/tasks/setup.php b/deployer/tasks/setup.php index decc7a5..ceb5519 100644 --- a/deployer/tasks/setup.php +++ b/deployer/tasks/setup.php @@ -218,7 +218,7 @@ private function copyMedia(): void // create source archive onHost($this->source, static function () use ($path) { - run('tar -zcvf '.escapeshellarg($path).' -C {{media_dir}} .'); + run('COPYFILE_DISABLE=1 tar -zcvf '.escapeshellarg($path).' -C {{media_dir}} .'); if (Context::get()->getHost() instanceof Localhost) { return;