From 82f44cd173ba1807f6aa8d2f852b562e916c7e6e Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 5 Jun 2018 16:07:27 +0300 Subject: [PATCH] Fix crate name --- ci/before_deploy.ps1 | 2 +- ci/before_deploy.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1 index 191a30b8..ea76e83d 100644 --- a/ci/before_deploy.ps1 +++ b/ci/before_deploy.ps1 @@ -11,7 +11,7 @@ Set-Location $STAGE $ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET).zip" # TODO Update this to package the right artifacts -Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\hello.exe" '.\' +Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\topgrade.exe" '.\' 7z a "$ZIP" * diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 026dc289..176d7181 100644 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -18,10 +18,10 @@ main() { test -f Cargo.lock || cargo generate-lockfile # TODO Update this to build the artifacts that matter to you - cross rustc --bin hello --target $TARGET --release -- -C lto + cross rustc --bin topgrade --target $TARGET --release -- -C lto # TODO Update this to package the right artifacts - cp target/$TARGET/release/hello $stage/ + cp target/$TARGET/release/topgrade $stage/ cd $stage tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *