Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thepluck committed Feb 15, 2025
1 parent 7dd6277 commit 938a1b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foundryup-zksync/foundryup-zksync
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ main() {
say "installed - $(ensure "$bin_path" --version)"

# Check if the default path of the binary is not in FOUNDRY_BIN_DIR
which_path="$(command -v "$bin" || true)"
which_path="$(command -v "$bin-zksync" || true)"
if [ -n "$which_path" ] && [ "$which_path" != "$bin_path" ]; then
warn ""
cat 1>&2 <<EOF
Expand Down Expand Up @@ -421,7 +421,7 @@ use() {
say "use - $(ensure "$bin_path" -V)"

# Check if the default path of the binary is not in FOUNDRY_BIN_DIR
which_path="$(command -v "$bin" || true)"
which_path="$(command -v "$bin-zksync" || true)"
if [ -n "$which_path" ] && [ "$which_path" != "$bin_path" ]; then
warn ""
cat 1>&2 <<EOF
Expand Down

0 comments on commit 938a1b4

Please sign in to comment.