diff options
| author | Mike McQuaid | 2014-07-28 20:23:29 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2014-07-28 20:23:46 +0200 |
| commit | 2f9a31a143fc02b04360b7fce8a6bebb3efead09 (patch) | |
| tree | bd8b7f0d3ab791a3956779e9d8475ebe0151b14b /Library | |
| parent | bafed5c160596d0fa14090cf808458fbeffa78ea (diff) | |
| download | homebrew-2f9a31a143fc02b04360b7fce8a6bebb3efead09.tar.bz2 | |
jenkins: use double-quotes.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jenkins.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb index c20902fdd..bb05ce141 100644 --- a/Library/Formula/jenkins.rb +++ b/Library/Formula/jenkins.rb @@ -1,16 +1,16 @@ -require 'formula' +require "formula" class Jenkins < Formula - homepage 'http://jenkins-ci.org' - url 'http://mirrors.jenkins-ci.org/war/1.574/jenkins.war' - sha1 'e304f84dfde4f6d0134d8bffe933e6f224da4606' + homepage "http://jenkins-ci.org" + url "http://mirrors.jenkins-ci.org/war/1.574/jenkins.war" + sha1 "e304f84dfde4f6d0134d8bffe933e6f224da4606" - head 'https://github.com/jenkinsci/jenkins.git' + head "https://github.com/jenkinsci/jenkins.git" 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 |
