Skip to content

Commit

Permalink
fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lepapareil authored Aug 29, 2024
1 parent b279ea6 commit 2ae5f62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/install_prerequisites_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ set -Eeuo pipefail

echo "----- install prerequisite packages -----"
export DEBIAN_FRONTEND=noninteractive
if ! command -V sudo ; then
if ! command -V sudo >/dev/null 2>&1 ; then
apt-get update
apt-get -y install sudo
DEBIAN_FRONTEND=noninteractive apt-get -y install sudo
fi
sudo apt-get update
sudo apt-get -y install \
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
bash \
expect \
curl \
Expand Down

0 comments on commit 2ae5f62

Please sign in to comment.