Update before install

This commit is contained in:
Simon Warta 2025-01-14 16:19:01 +01:00
parent 90edd3d833
commit 70c21a3173
No known key found for this signature in database

View File

@ -57,7 +57,9 @@ jobs:
command: echo "node $(node --version)"; echo "yarn $(yarn --version)"
- run:
name: Install libusb
command: sudo apt-get install libusb-1.0-0-dev
command: |
sudo apt update
sudo apt install libusb-1.0-0-dev
- run:
name: Install Dependencies
command: yarn install --immutable --immutable-cache --check-cache
@ -576,7 +578,9 @@ jobs:
command: echo "node $(node --version)"; echo "yarn $(yarn --version)"
- run:
name: Install libusb
command: sudo apt-get install libusb-1.0-0-dev
command: |
sudo apt update
sudo apt install libusb-1.0-0-dev
- run:
name: Install Dependencies
command: yarn install --immutable --immutable-cache --check-cache
@ -631,7 +635,9 @@ jobs:
command: echo "node $(node --version)"; echo "yarn $(yarn --version)"
- run:
name: Install libusb
command: sudo apt-get install libusb-1.0-0-dev
command: |
sudo apt update
sudo apt install libusb-1.0-0-dev
- run:
name: Install Dependencies
command: yarn install --immutable --immutable-cache --check-cache