Skip to content

Commit

Permalink
go: Update to r60.3
Browse files Browse the repository at this point in the history
Closes Homebrew#8567.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
  • Loading branch information
AlekSi authored and Sharpie committed Nov 13, 2011
1 parent 7433337 commit 0ba0f11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Library/Formula/go.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

class Go < Formula
if ARGV.include? "--use-git"
url 'https://github.com/tav/go.git', :ref => '8ec59f48bc' # git mirror isn't getting tags
url 'https://github.com/tav/go.git', :tag => 'release.r60.3'
head 'https://github.com/tav/go.git'
else
url 'http://go.googlecode.com/hg/', :revision => 'release.r60.1'
url 'http://go.googlecode.com/hg/', :revision => 'release.r60.3'
head 'http://go.googlecode.com/hg/'
end
version 'r60.1'
version 'r60.3'
homepage 'http://golang.org'

skip_clean 'bin'
Expand All @@ -21,7 +21,7 @@ def install
prefix.install %w[src include test doc misc lib favicon.ico AUTHORS]
Dir.chdir prefix
mkdir %w[pkg bin]
File.open('VERSION', 'w') {|f| f.write('release.r60.1 9781') }
File.open('VERSION', 'w') {|f| f.write('release.r60.3 9516') }

Dir.chdir 'src' do
# Tests take a very long time to run. Build only
Expand Down

0 comments on commit 0ba0f11

Please sign in to comment.