aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJosh Hagins2015-01-22 15:31:45 -0500
committerJack Nagel2015-01-24 21:22:06 -0500
commit90582ceccefde9b6ef22ac246ba3483af05b1e56 (patch)
treea5444bcaf1ed7ed0e47b207e07f06bf8a8d7972c /Library
parent2b25b99ef2d754f4429645f65109f2d6176ead2b (diff)
downloadhomebrew-90582ceccefde9b6ef22ac246ba3483af05b1e56.tar.bz2
jenkins: substitute arglist for command string
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/jenkins.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb
index 93961b3da..33a7763bc 100644
--- a/Library/Formula/jenkins.rb
+++ b/Library/Formula/jenkins.rb
@@ -14,7 +14,7 @@ class Jenkins < Formula
def install
if build.head?
- system "mvn clean install -pl war -am -DskipTests"
+ system "mvn", "clean", "install", "-pl", "war", "-am", "-DskipTests"
else
system "jar", "xvf", "jenkins.war"
end