diff --git a/CHANGELOG.md b/CHANGELOG.md index f98b9e431..a13a20079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ a host of other small features and fags. [`runatlantis/atlantis:v0.12.0`](https://hub.docker.com/r/runatlantis/atlantis/tags/) ## Diff v0.11.1..v0.12.0 -https://github.com/runatlantis/atlantis/compare/v0.11.0...v0.11.1 +https://github.com/runatlantis/atlantis/compare/v0.11.0...v0.12.0 # v0.11.1 diff --git a/scripts/binary-release.sh b/scripts/binary-release.sh index 8d2bd1362..255786bc7 100755 --- a/scripts/binary-release.sh +++ b/scripts/binary-release.sh @@ -11,7 +11,13 @@ rm -rf output/* if ! which gox > /dev/null; then echo "-> installing gox..." + # Need to run go get in a separate dir + # so it doesn't modify our go.mod. + SRC_DIR=$(pwd) + cd $(mktemp -d) + go mod init example.com/m go get -u github.com/mitchellh/gox + cd "$SRC_DIR" fi # build @@ -41,4 +47,4 @@ echo "" echo "" echo "-----------------------------------" echo "Output:" -ls -alh output/ \ No newline at end of file +ls -alh output/