From a9c514d7746ae14f1b7682788dc13db6fe353237 Mon Sep 17 00:00:00 2001 From: Gary Yu Date: Wed, 10 Oct 2018 19:02:29 +0800 Subject: [PATCH] fix: binary auto release feature broken (#1714) * fix a mistake on script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 85c4fe154..4fd04be3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,7 +67,7 @@ script: fi; before_deploy: - - if [[ "TEST_SUITE" == "pool-p2p" ]]; then + - if [[ "$TEST_SUITE" == "pool-p2p" ]]; then cargo clean && cargo build --release && ./.auto-release.sh; fi