From 15200fb592d61e6db844413256ea8cce49d6bcec Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Fri, 31 Jan 2025 16:04:00 +0300 Subject: [PATCH] --yes for apt-get install --- .github/workflows/make.yml | 2 +- .rultor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 2ed41c1..f51ca42 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -40,6 +40,6 @@ jobs: with: ruby-version: 3.3 bundler-cache: true - - run: sudo apt-get update && sudo apt-get install -y libxml2-utils + - run: sudo apt-get update --yes --fix-missing && sudo apt-get install --yes libxml2-utils - run: make install - run: make diff --git a/.rultor.yml b/.rultor.yml index e5b8e5d..d5b1dad 100644 --- a/.rultor.yml +++ b/.rultor.yml @@ -25,7 +25,7 @@ docker: assets: docker-password: yegor256/home#assets/docker-password install: | - sudo apt-get update && sudo apt-get install -y libxml2-utils wget nodejs npm + sudo apt-get update --yes --fix-missing && sudo apt-get install --yes libxml2-utils wget nodejs npm sudo make install clean "--directory=$(pwd)" merge: script: |-