Skip to content

Commit

Permalink
Merge pull request #50 from Metaswitch/md/issue/49/nonmusllinux
Browse files Browse the repository at this point in the history
Use sh string comparison
  • Loading branch information
maxdymond authored Dec 2, 2019
2 parents 773c800 + 7a53852 commit 82368c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Status: Available for use
### Added
- Add support for specifying Dockerfile build target - MINOR
- Add `announce` support for notifying Slack of new changes - MINOR
- Fix up build.sh for Linux builds - PATCH

## [0.4.1] - 2019-11-12
### Changed
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL=${TRAVIS_TAG}-${TRAVIS_OS_NAME}
rm -rf target
echo "Starting release build for ${LABEL}"

if [[ ${TRAVIS_OS_NAME} == "linux" ]]
if [ ${TRAVIS_OS_NAME} = "linux" ]
then
echo "Building statically linked linux binary"
docker run --rm -v $(pwd):/home/rust/src -w /home/rust/src ekidd/rust-musl-builder \
Expand Down

0 comments on commit 82368c5

Please sign in to comment.