aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2012-09-20 01:12:53 -0700
committerIgor Minar2012-10-17 12:48:08 -0700
commit0ae0591f42691586d29c9366bdb257eeec8f002b (patch)
tree85fd73c8c6d4b14f13e941adda0930fc14779f99
parent43ac783d35400fe0467b6c3a1bb3c5cb1d648a89 (diff)
downloadangular.js-0ae0591f42691586d29c9366bdb257eeec8f002b.tar.bz2
chore(Rakefile): misc_options should support + -> , conversion
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 44b85310..9feca450 100644
--- a/Rakefile
+++ b/Rakefile
@@ -346,5 +346,5 @@ def start_testacular(config, singleRun, browsers, misc_options)
"#{config} " +
"#{'--single-run=true' if singleRun} " +
"#{'--browsers=' + browsers.gsub('+', ',') if browsers} " +
- "#{misc_options}"
+ "#{(misc_options || '').gsub('+', ',')}"
end