Skip to content

Commit 37b1d0b

Browse files
author
Cedric Gatay
committed
feat(rust): properly install ct binary
1 parent bb98937 commit 37b1d0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/before_deploy.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Set-Location $STAGE
1111
$ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET).zip"
1212

1313
# TODO Update this to package the right artifacts
14-
Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\hello.exe" '.\'
14+
Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\ct.exe" '.\'
1515

1616
7z a "$ZIP" *
1717

ci/before_deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ main() {
1818
test -f Cargo.lock || cargo generate-lockfile
1919

2020
# TODO Update this to build the artifacts that matter to you
21-
cross rustc --bin hello --target $TARGET --release -- -C lto
21+
cross rustc --bin ct --target $TARGET --release -- -C lto
2222

2323
# TODO Update this to package the right artifacts
24-
cp target/$TARGET/release/hello $stage/
24+
cp target/$TARGET/release/ct $stage/
2525

2626
cd $stage
2727
tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *

0 commit comments

Comments
 (0)