From 70313bde97fed5672649c483ca69c0206a97af4c 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 dd211cd174..4ee55a2566 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -57,7 +57,9 @@ jobs: command: git version; git-lfs --version; 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 @@ -552,7 +554,9 @@ jobs: command: git version; git-lfs --version; 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 @@ -607,7 +611,9 @@ jobs: command: git version; git-lfs --version; 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