This repository was archived by the owner on Sep 28, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ### v0.5.2
2+
3+ * Downgraded docker client to be more compatible with more versions of docker.
4+
15### v0.5.1
26
37* ` entrypoint ` and ` cmd ` now handle nils and arrays of strings appropriately.
Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ test-ci: checks build-ci run-test-ci
4343
4444test : checks all build run-test
4545
46- release : clean all test
47- VERSION=${VERSION} RELEASE=1 go run main.go -n -t erikh /box:${VERSION} build.rb
46+ release : clean all
47+ VERSION=${VERSION} RELEASE=1 go run main.go -n -t boxbuilder /box:${VERSION} build.rb
4848 docker rm -f box-build-${VERSION} || :
49- docker run --name box-build-${VERSION} --entrypoint /bin/bash erikh /box:${VERSION} -c ' exit 0'
49+ docker run --name box-build-${VERSION} --entrypoint /bin/bash boxbuilder /box:${VERSION} -c ' exit 0'
5050 docker cp box-build-${VERSION} :/box .
5151 docker rm box-build-${VERSION}
5252 sh release/release.sh ${VERSION}
Original file line number Diff line number Diff line change 11#! /bin/sh
22# linux/mac installer for box
33set -e
4- version=0.5.1
4+ version=0.5.2
55if [ " $( uname -s) " = " Linux" ]; then
66 arch=" linux"
77else
You can’t perform that action at this time.
0 commit comments