From 70c21a3173c4dfa05f932b63feada880b64b6be1 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Tue, 14 Jan 2025 16:19:01 +0100 Subject: [PATCH] Update before install --- .circleci/config.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ab9963a691..50305d7b24 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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