From 587f5b4649bfca4e246225d89004884c89f40c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Micha=C5=82ek?= <52135326+cptartur@users.noreply.github.com> Date: Wed, 19 Jul 2023 10:29:03 +0200 Subject: [PATCH] Fix names in release scripts (#227) Closes # ## Introduced changes - - ## Breaking changes ## Checklist - [ ] Linked relevant issue - [ ] Updated relevant documentation - [ ] Added relevant tests - [ ] Performed self-review of the code --- scripts/install.sh | 2 +- scripts/package.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index c20ba46e4d..9d0a5f456f 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -420,7 +420,7 @@ create_install_dir() { if [ -d "$_installdir" ]; then ensure rm -rf "$_installdir" - say "removed existing forge and cast installation at ${_installdir}" + say "removed existing snforge and sncast installation at ${_installdir}" fi ensure mkdir -p "$_installdir" diff --git a/scripts/package.sh b/scripts/package.sh index 6d2ae94335..9882d75afc 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -10,7 +10,7 @@ mkdir -p "$PKG_FULL_NAME/bin" bin_ext="" [[ "$TARGET" == *-windows-* ]] && bin_ext=".exe" -binary_crates=("forge" "cast") +binary_crates=("snforge" "sncast") for crate in "${binary_crates[@]}"; do cp "./starknet-foundry/target/${TARGET}/release/${crate}${bin_ext}" "$PKG_FULL_NAME/bin/" done