Skip to content
This repository has been archived by the owner on Aug 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #12 from tkn98/bugfix/config-value
Browse files Browse the repository at this point in the history
Stop switch parsing before path and value in config:set
  • Loading branch information
SchumacherFM committed Mar 18, 2016
2 parents adafd63 + a2ab49b commit 707b67f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 . '"';
}
}
}
Expand Down

0 comments on commit 707b67f

Please sign in to comment.