Skip to content

Commit

Permalink
Sudo trickery
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmunns committed Aug 15, 2023
1 parent 8641995 commit 15c276c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/install-ci-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ set -euxo pipefail
# make sure the target output directory exists
mkdir -p ./target

# Make sure netlify has sudo
apt-get update || :
apt-get install -y sudo || :

# Install libudev
apt-get update && apt-get install -y libudev-dev
sudo apt-get update
sudo apt-get install -y libudev-dev

# Install Oranda
curl \
Expand Down

0 comments on commit 15c276c

Please sign in to comment.