From 9d84ef65439c93b4ee90ad1e8e5eddae587ad3d7 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+ellet0@users.noreply.github.com> Date: Sun, 12 May 2024 14:54:23 +0300 Subject: [PATCH] Update build.yml to remove duplicated -y yes confirmation when installing Linux requirements --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af18ce5a..72a76630 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: run: sudo apt update -y && sudo apt upgrade -y - name: Install flutter Linux prerequisites - run: sudo apt install -y curl git unzip xz-utils zip libglu1-mesa -y + run: sudo apt install -y curl git unzip xz-utils zip libglu1-mesa - name: Flutter build Linux run: flutter build linux --release --verbose --dart-define=CI=true