From e51d26eda3d940d24e79f5b37d3c46b022af5992 Mon Sep 17 00:00:00 2001 From: Eduardo Rosendo Date: Fri, 1 Mar 2024 16:26:53 -0400 Subject: [PATCH] fix(bulk data): Add command to make sure the sudo pkg is installed --- scripts/make_bulk_data.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/make_bulk_data.sh b/scripts/make_bulk_data.sh index 5091734c4b..815b4b682c 100755 --- a/scripts/make_bulk_data.sh +++ b/scripts/make_bulk_data.sh @@ -3,6 +3,9 @@ set -e echo "Installing utilities" +# Make sure the sudo package is installed +apt install -y sudo + # Set up Sentry curl -sL https://sentry.io/get-cli/ | bash eval "$(sentry-cli bash-hook)"