Skip to content

Commit

Permalink
travis: fix bash condition
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbabcock committed Jan 10, 2019
1 parent 24972ad commit 2ac7313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/before_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ main() {

if [ -n "$TARGET" ]; then
cross rustc --bin dness --target $TARGET --release -- -C lto
if [ "$TARGET" == "x86_64-unknown-linux-musl" ]; then
if [ "$TARGET" = "x86_64-unknown-linux-musl" ]; then
cross deb --target "$TARGET" --variant musl --no-build
cp target/debian/dness*.deb $src/.
fi
Expand Down

0 comments on commit 2ac7313

Please sign in to comment.