From b6f29ca388429de84e1565c7cdd07ac88e2718a6 Mon Sep 17 00:00:00 2001 From: Nisheeth Barthwal Date: Fri, 13 Sep 2024 14:50:53 +0200 Subject: [PATCH] fix: install foundryzksync-up in /tmp to prevent conflict with source directory (#573) install foundryzksync-up in /tmp to prevent conflict with source directory --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53b70f22a..1b13f7c63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -129,7 +129,7 @@ jobs: - uses: actions/checkout@v4 - name: Install foundry-zksync run: | - curl -L https://raw.githubusercontent.com/matter-labs/foundry-zksync/main/install-foundry-zksync | bash + cd /tmp && curl -L https://raw.githubusercontent.com/matter-labs/foundry-zksync/main/install-foundry-zksync | bash - name: Verify installation run: forge --version