From 37b3389aa575d7bbde87403bcfaac074a822a542 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 9 Aug 2023 13:56:34 -0400 Subject: [PATCH] ci: try to use a or true over e switch as CI calls bash with e directly --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5566fd5..47abea3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,7 @@ jobs: - name: Setup Golang run: | sudo apt-get update; - set +e; - bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer); - set -e; + bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) || true; source ~/.gvm/scripts/gvm; gvm install go1.4 -B; gvm use go1.4 --default;