From 41900eaeee670e84855f65d59c52543fd39beb51 Mon Sep 17 00:00:00 2001 From: Jordan Johnson-Doyle Date: Thu, 21 Feb 2019 18:11:42 +0000 Subject: [PATCH] Fix deploy script on arm & windows builds --- ci/before_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 3efe49a..c69d658 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -19,7 +19,7 @@ main() { cross rustc --bin bin --target $TARGET --release -- -C lto - strip target/$TARGET/release/bin + [ "$TARGET" == "arm-unknown-linux-gnueabi" ] || [ "$TARGET" == "x86_64-pc-windows-gnu" ] || strip target/$TARGET/release/bin cp target/$TARGET/release/bin $stage/ cd $stage -- libgit2 1.7.2