From 863827f277a2e48ec6f1939fa48d656dec298f7a Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Mon, 11 Sep 2023 11:42:15 +0200 Subject: [PATCH] Add -y --- .github/workflows/build_binaries.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_binaries.yml b/.github/workflows/build_binaries.yml index bfc14202fd..3f465b7ced 100644 --- a/.github/workflows/build_binaries.yml +++ b/.github/workflows/build_binaries.yml @@ -26,9 +26,9 @@ jobs: - name: Install julia using juliaup run: | if [ ${{ matrix.os }} == "ubuntu-latest" ]; then - curl -fsSL https://install.julialang.org | sh + curl -fsSL https://install.julialang.org | sh -y elif [ ${{ matrix.os }} == "macos-latest" ]; then - curl -fsSL https://install.julialang.org | sh + curl -fsSL https://install.julialang.org | sh -y elif [ ${{ matrix.os }} == "windows-latest" ]; then winget install julia -s msstore fi