ci: try to use a or true over e switch as CI calls bash with e directly

This commit is contained in:
Derrick Hammer 2023-08-09 13:56:34 -04:00
parent f79a722e77
commit 37b3389aa5
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 3 deletions

View File

@ -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;