Skip to content

Commit 587f5b4

Browse files
authored
Fix names in release scripts (#227)
<!-- Reference any GitHub issues resolved by this PR --> Closes # ## Introduced changes <!-- A brief description of the changes --> - - ## Breaking changes <!-- List of all breaking changes, if applicable --> ## Checklist <!-- Make sure all of these are complete --> - [ ] Linked relevant issue - [ ] Updated relevant documentation - [ ] Added relevant tests - [ ] Performed self-review of the code
1 parent a63504b commit 587f5b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ create_install_dir() {
420420

421421
if [ -d "$_installdir" ]; then
422422
ensure rm -rf "$_installdir"
423-
say "removed existing forge and cast installation at ${_installdir}"
423+
say "removed existing snforge and sncast installation at ${_installdir}"
424424
fi
425425

426426
ensure mkdir -p "$_installdir"

scripts/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ mkdir -p "$PKG_FULL_NAME/bin"
1010
bin_ext=""
1111
[[ "$TARGET" == *-windows-* ]] && bin_ext=".exe"
1212

13-
binary_crates=("forge" "cast")
13+
binary_crates=("snforge" "sncast")
1414
for crate in "${binary_crates[@]}"; do
1515
cp "./starknet-foundry/target/${TARGET}/release/${crate}${bin_ext}" "$PKG_FULL_NAME/bin/"
1616
done

0 commit comments

Comments
 (0)