From 10f64fb05fce14fcee36b097c21f1609c9870e2a Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 23 Jun 2023 01:59:48 -0400 Subject: [PATCH] ci: fix tinygo download --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0af153c..e0165f3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ workflows: 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; + wget https://github.com/tinygo-org/tinygo/releases/download/v$VERSION/$TINYGO; sudo dpkg -i $TINYGO && rm $TINYGO; cd src/golang; go get;