Skip to content

Commit

Permalink
bug(docs): fix netlify CI (#231)
Browse files Browse the repository at this point in the history
This PR tries to fix netlify CI again
  • Loading branch information
jamesmunns authored Aug 15, 2023
1 parent c9684e7 commit 7123c99
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
sudo apt-get update && sudo 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 7123c99

Please sign in to comment.