Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: go

go:
- 1.4.1
- 1.3.3

# let us have pretty experimental Docker-based Travis workers
sudo: false
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ and `make` installed.

### Install from source

You need to have the [Go compiler (v1.3 or higher)](http://golang.org) installed, and `$GOPATH`
You need to have the [Go compiler (v1.4 or higher)](http://golang.org) installed, and `$GOPATH`
[properly setup](http://golang.org/doc/code.html#GOPATH). Then run

go get github.com/boot2docker/boot2docker-cli
Expand All @@ -77,7 +77,7 @@ You can cross compile to OS X, Windows, and Linux. For that you need to first
[make your Go compiler ready for cross compiling to the target
platforms](http://stackoverflow.com/questions/12168873/cross-compile-go-on-osx).

Please make sure you build with golang v1.3 or later - it is required for
Please make sure you build with golang v1.4 or later - it is required for
`boot2docker download` to work on OS X.

We provide a Makefile to make the process a bit easier.
Expand Down
4 changes: 2 additions & 2 deletions virtualbox/vbm.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
func init() {
if runtime.GOOS == "darwin" {
// remove DYLD_LIBRARY_PATH and LD_LIBRARY_PATH as they break VBoxManage on OSX
os.Setenv("DYLD_LIBRARY_PATH", "")
os.Setenv("LD_LIBRARY_PATH", "")
os.Unsetenv("DYLD_LIBRARY_PATH")
os.Unsetenv("LD_LIBRARY_PATH")
}
}

Expand Down