From 984543fcb9ad9a461e041e7a2667436fe4440dca Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Mon, 11 Oct 2021 17:30:00 -0700 Subject: [PATCH] Don't export rustflags type: fixed --- bin/package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/package b/bin/package index 188df2d..007e1aa 100755 --- a/bin/package +++ b/bin/package @@ -26,8 +26,8 @@ case $os in ;; esac -export RUSTFLAGS='--deny warnings --codegen target-feature=+crt-static' -cargo build --bin $bin --target $target --release +RUSTFLAGS='--deny warnings --codegen target-feature=+crt-static' \ + cargo build --bin $bin --target $target --release executable=target/$target/release/$bin if [[ $os == windows-2016 ]]; then