We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4815dd8 commit 0e434e6Copy full SHA for 0e434e6
ci/before_deploy.sh
@@ -21,7 +21,11 @@ main() {
21
cross rustc --bin ct --target $TARGET --release -- -C lto
22
23
# TODO Update this to package the right artifacts
24
- cp target/$TARGET/release/ct $stage/
+ if [ -f target/$TARGET/release/ct.exe ]; then
25
+ cp target/$TARGET/release/ct.exe $stage/
26
+ else
27
+ cp target/$TARGET/release/ct $stage/
28
+ fi
29
30
cd $stage
31
tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *
0 commit comments