summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-04-27 13:11:32 -0400
committerDan Davison <dandavison7@gmail.com>2020-04-27 13:15:51 -0400
commite541905745fa357bf9b84e6e38d6bb5e5e547d87 (patch)
tree842093f163ac2ea859309a18e11af76b5b9e322f
parentb8d754d89e32059097ed2e53514b6f528d11c762 (diff)
Strip Windows binarywindows-strip-binary
-rwxr-xr-xci/before_deploy.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh
index c79b8c69..f073c3b7 100755
--- a/ci/before_deploy.sh
+++ b/ci/before_deploy.sh
@@ -30,9 +30,7 @@ pack() {
# copying the main binary
cp "target/$TARGET/release/$PROJECT_NAME" "$tempdir/$package_name/"
- if [ "$TRAVIS_OS_NAME" != windows ]; then
- "${gcc_prefix}"strip "$tempdir/$package_name/$PROJECT_NAME"
- fi
+ "${gcc_prefix}"strip "$tempdir/$package_name/$PROJECT_NAME"
# manpage, readme and license
cp README.md "$tempdir/$package_name"