Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.

Commit 46b348c

Browse files
Sven DowideitSven Dowideit
authored andcommitted
Merge pull request #127 from SvenDowideit/release-script
how I built the 0.9.2 boot2docker-cli release
2 parents 093cc1a + 9b54b48 commit 46b348c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

release.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/sh
2+
set -e
3+
4+
# This is how I built the 0.9.2 boot2docker-cli release on my mac.
5+
6+
# install https://storage.googleapis.com/golang/go1.2.2.darwin-amd64-osx10.8.pkg
7+
8+
TMP=$(mktemp -d /tmp/b2d-cli.XXXXXX)
9+
echo Building in $TMP
10+
export GOPATH=$TMP
11+
export DOCKER_HOST=tcp://localhost:4243
12+
go get github.com/boot2docker/boot2docker-cli
13+
cd ${TMP}/src/github.com/boot2docker/boot2docker-cli
14+
15+
16+
make
17+
18+
echo building OSX native
19+
make darwin
20+
21+
pwd

0 commit comments

Comments
 (0)