From 55a5c0c640f939d0164fbea503467e4102c71709 Mon Sep 17 00:00:00 2001 From: Alexander Miehe Date: Wed, 14 Jan 2015 09:30:52 +0100 Subject: [PATCH] Fix key name to follow naming convention --- Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php b/Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php index 625bd7b..ba16246 100644 --- a/Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php +++ b/Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php @@ -77,8 +77,8 @@ class TarGzTask extends BaseStrategyTaskAbstract implements IsReleaseAware $strategyFlags = ''; } - // remove h option only if dump_symlinks is allowed in the release config part - $dumpSymlinks = $this->getConfig()->release('dump_symlinks') ? '' : 'h'; + // remove h option only if dump-symlinks is allowed in the release config part + $dumpSymlinks = $this->getConfig()->release('dump-symlinks') ? '' : 'h'; $command = 'tar cfz'. $dumpSymlinks . $strategyFlags . ' ' . $localTarGz . '.tar.gz ' . $excludeCmd . $excludeFromFileCmd . ' -C ' . $this->getConfig()->deployment('from') . ' .'; $result = $this->runCommandLocal($command);