From 0a502bd2f39c61460403e08cc84c76cc26c7ea54 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 23 Jun 2023 01:54:17 -0400 Subject: [PATCH] ci: add semi-colons --- .circleci/config.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ac750c7..d085701 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,18 +12,18 @@ workflows: pre-steps: - run: command: > - bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) - source ~/.gvm/scripts/gvm - gvm install go1.4 - gvm use go1.4 --default - gvm install go1.4 - gvm use go1.8 --default - VERSION=0.28.1 + bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer); + source ~/.gvm/scripts/gvm; + gvm install go1.4; + gvm use go1.4 --default; + gvm install go1.4; + gvm use go1.8 --default; + VERSION=0.28.1; TINYGO="tinygo_${VERSION}_amd64.deb" - wget https://github.com/tinygo-org/tinygo/releases/download/$VERSION/$TINYGO - sudo dpkg -i $TINYGO && rm $TINYGO - cd src/golang - go get + wget https://github.com/tinygo-org/tinygo/releases/download/$VERSION/$TINYGO; + sudo dpkg -i $TINYGO && rm $TINYGO; + cd src/golang; + go get; post-steps: - persist_to_workspace: