From 98f4c205bb66c39a529eedd0b0578b5478e30344 Mon Sep 17 00:00:00 2001 From: Srevin Saju Date: Wed, 26 Aug 2020 16:30:57 +0300 Subject: [PATCH] pacman --noconfirm --- .github/workflows/continuous.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index 7e0b31b..acf94e3 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -37,8 +37,8 @@ jobs: - uses: actions/checkout@v2 - name: Set up User run: | - pacman -Syu - pacman -S sudo + pacman -Syu --noconfirm + pacman -S sudo --noconfirm sed -i 's,# %wheel ALL=(ALL) ALL,%wheel\tALL=(ALL)\tNOPASSWD:ALL,g' /etc/sudoers useradd -m github usermod -aG wheel github @@ -46,9 +46,9 @@ jobs: - name: Install git run: | - sudo pacman -S git wget curl jq unzip - sudo pacman -S gcc cmake pkgconf - sudo pacman -S meson sdl2 ffmpeg android-tools + sudo pacman -S git wget curl jq unzip --noconfirm + sudo pacman -S gcc cmake pkgconf --noconfirm + sudo pacman -S meson sdl2 ffmpeg android-tools --noconfirm - name: Clone scrcpy run: |