From a2ab49bbfea538caad79591cb99b751a1eacf01d Mon Sep 17 00:00:00 2001 From: Tom Klingenberg Date: Thu, 17 Mar 2016 18:03:43 +0100 Subject: [PATCH] Stop switch parsing before path and value in config:set --- .../src/HarrisStreet/CoreConfigData/Import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/n98-magerun/modules/Zookal_HarrisStreetImpex/src/HarrisStreet/CoreConfigData/Import.php b/src/lib/n98-magerun/modules/Zookal_HarrisStreetImpex/src/HarrisStreet/CoreConfigData/Import.php index 6beaa641d..92fd48a59 100644 --- a/src/lib/n98-magerun/modules/Zookal_HarrisStreetImpex/src/HarrisStreet/CoreConfigData/Import.php +++ b/src/lib/n98-magerun/modules/Zookal_HarrisStreetImpex/src/HarrisStreet/CoreConfigData/Import.php @@ -167,7 +167,7 @@ protected function _getN98ConfigSets($path, array $config) if ($value === self::DELETE_VALUE) { $return[] = 'config:delete --scope=' . $scope . ' --scope-id=' . $scopeId . ' "' . $path . '"'; } else { - $return[] = 'config:set --scope=' . $scope . ' --scope-id=' . $scopeId . ' "' . $path . '" "' . $value . '"'; + $return[] = 'config:set --scope=' . $scope . ' --scope-id=' . $scopeId . ' -- "' . $path . '" "' . $value . '"'; } } }