Skip to content

Commit

Permalink
chore: update binary location in installation scripts (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter authored Apr 18, 2024
1 parent 4269df3 commit 532ef5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ For the most effective use of our library, we recommend familiarizing yourself w
Follow these steps to quickly install the binaries for `foundry-zksync`:
**Note:** This installation overrides any existing forge and cast binaries in ~/.foundry. You can use forge without the --zksync flag for standard EVM chains. To revert to a previous installation, follow the instructions [here](https://book.getfoundry.sh/getting-started/installation#using-foundryup).
1. **Clone the Repository**:
Begin by cloning the `foundry-zksync` repository from GitHub. This will download the latest version of the source code to your local machine.
Expand Down
2 changes: 1 addition & 1 deletion foundryup-zksync/foundryup-zksync
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eo pipefail

BASE_DIR=${XDG_CONFIG_HOME:-$HOME}
FOUNDRY_DIR=${FOUNDRY_DIR:-"$BASE_DIR/.foundry-zksync"}
FOUNDRY_DIR=${FOUNDRY_DIR:-"$BASE_DIR/.foundry"}
FOUNDRY_BIN_DIR="$FOUNDRY_DIR/bin"
FOUNDRY_MAN_DIR="$FOUNDRY_DIR/share/man/man1"

Expand Down
2 changes: 1 addition & 1 deletion foundryup-zksync/install
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eo pipefail
echo "Installing foundryup-zksync..."

BASE_DIR="${XDG_CONFIG_HOME:-$HOME}"
FOUNDRY_DIR="${FOUNDRY_DIR-"$BASE_DIR/.foundry-zksync"}"
FOUNDRY_DIR="${FOUNDRY_DIR-"$BASE_DIR/.foundry"}"
FOUNDRY_BIN_DIR="$FOUNDRY_DIR/bin"
FOUNDRY_MAN_DIR="$FOUNDRY_DIR/share/man/man1"

Expand Down

0 comments on commit 532ef5e

Please sign in to comment.