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:59:09 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-11 15:59:09 +0400
commitc7d79b6cff52d3ddf00d494bc0021b86230964db (patch)
treee1ccd7cfc0369872cafc764df501c8bfdadfbe48 /plugins
parentf0c244e5f05d4e00f70712e02329169df10d89b2 (diff)
Don't use quotes around arguments when creating self-referential commands in generate:travis-yml.
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 ca2d79a226..0eee1773a6 100644
--- a/plugins/CoreConsole/Commands/GenerateTravisYmlFile.php
+++ b/plugins/CoreConsole/Commands/GenerateTravisYmlFile.php
@@ -111,7 +111,7 @@ class GenerateTravisYmlFile extends ConsoleCommand
if ($value === true) {
$command .= " --$name";
} else {
- $command .= " \"--$name=". addslashes($value) . "\"";
+ $command .= " --$name=". addslashes($value);
}
}