Skip to content

Commit

Permalink
Fix names in release scripts (#227)
Browse files Browse the repository at this point in the history
<!-- 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
  • Loading branch information
cptartur authored Jul 19, 2023
1 parent a63504b commit 587f5b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 587f5b4

Please sign in to comment.