Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kurtosis testing for nimbus eth1 and eth2 #2281

Merged
merged 14 commits into from
Jun 10, 2024
Merged
Prev Previous commit
Next Next commit
fix: check for jq shifted from dpkg
  • Loading branch information
advaita-saha committed Jun 3, 2024
commit 7227077002da5ceea582add159b54f35f1bb4a2c
7 changes: 4 additions & 3 deletions run-kurtosis-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ else
fi

# Install jq if not installed already
if [ "$(dpkg -l | awk '/jq/ {print }'|wc -l)" -ge 1 ]; then
echo "jq is already installed"
if [ "$(which jq)" != "" ];
then
echo "jq is already installed"
else
echo "Installing jq"
echo "jq is not installed. Installing jq"
sudo apt-get install -y jq
fi

Expand Down
Loading