From 6c17dd248fae41cbeb0d27ccd7a8314ff7f416e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Fran=C3=A7a?= Date: Fri, 15 Nov 2024 15:36:21 +0000 Subject: [PATCH] Fixed check --- install-foundry-zksync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-foundry-zksync b/install-foundry-zksync index af8f542bb..81ce0f973 100755 --- a/install-foundry-zksync +++ b/install-foundry-zksync @@ -54,7 +54,7 @@ echo "Cleanup completed." echo "Installation completed successfully!" echo "Verifying installation..." -if forge --version | grep -q "0.0.2"; then +if "$HOME/.foundry/bin/forge" --version | grep -q "0.0.2"; then echo "Forge version 0.0.2 is successfully installed." else echo "Installation verification failed. Forge is not properly installed."