diff options
| author | Josh Hagins | 2015-01-21 07:04:00 -0500 |
|---|---|---|
| committer | Jack Nagel | 2015-01-21 12:59:40 -0500 |
| commit | 1bed967edb8a4bc4ac5bc2fd700bf5bb34f46db5 (patch) | |
| tree | ac66af54f3849463acd95d45b505b5ee5354dfc0 /Library | |
| parent | e7e46f4ef2599708e7bf67ad1630d26b0b534907 (diff) | |
| download | homebrew-1bed967edb8a4bc4ac5bc2fd700bf5bb34f46db5.tar.bz2 | |
jenkins: Fix --HEAD build
Without this change, the build fails with
`Error: File exists - /usr/local/Cellar/jenkins/HEAD/libexec`
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jenkins.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb index 5da3b0f0e..d0cc94ef9 100644 --- a/Library/Formula/jenkins.rb +++ b/Library/Formula/jenkins.rb @@ -13,7 +13,7 @@ class Jenkins < Formula def install if build.head? system "mvn clean install -pl war -am -DskipTests" - libexec.install "war/target/jenkins.war", "." + libexec.install "war/target/jenkins.war" else libexec.install "jenkins.war" end |
