Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-11 15:20:59 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-11 15:21:21 +0400
commitc2a28e5dde457a1e412ee992b82e534ad3fd49f5 (patch)
tree5881fee0b913e834b1e42263dded0c157a57dd60 /plugins
parentf2621a06055e58dbfb428982316c17782ef2aab8 (diff)
Fix self referential command generation for generate:travis-yml command (quote has to be outside of whole argument not just value).
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreConsole/Commands/GenerateTravisYmlFile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreConsole/Commands/GenerateTravisYmlFile.php b/plugins/CoreConsole/Commands/GenerateTravisYmlFile.php
index dc5ccf306f..1a5103528d 100644
--- a/plugins/CoreConsole/Commands/GenerateTravisYmlFile.php
+++ b/plugins/CoreConsole/Commands/GenerateTravisYmlFile.php
@@ -103,7 +103,7 @@ class GenerateTravisYmlFile extends ConsoleCommand
if ($value === true) {
$command .= " --$name";
} else {
- $command .= " --$name=\"". addslashes($value) . "\"";
+ $command .= " \"--$name=". addslashes($value) . "\"";
}
}