From 3d1c56351787a4b9133b040574acc5c4c9e84561 Mon Sep 17 00:00:00 2001 From: MSevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:04:47 -0500 Subject: [PATCH] fix: add downloading dependencies to install script --- public/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/install.sh b/public/install.sh index b459fbbb1..31e0d0a24 100755 --- a/public/install.sh +++ b/public/install.sh @@ -10,6 +10,9 @@ fi cd rollkit || { echo "Failed to find the downloaded repository."; exit 1; } git fetch && git checkout $1 +echo "Installing dependencies..." +go mod tidy +go mod download echo "Building and installing Rollkit..." make install cd ..