ci: missing ;

This commit is contained in:
Derrick Hammer 2023-06-23 02:02:33 -04:00
parent 6b98e2d6b0
commit 7edc7d78db
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ workflows:
gvm install go1.8 -B; gvm install go1.8 -B;
gvm use go1.8 --default; gvm use go1.8 --default;
VERSION=0.28.1; VERSION=0.28.1;
TINYGO="tinygo_${VERSION}_amd64.deb" TINYGO="tinygo_${VERSION}_amd64.deb";
wget https://github.com/tinygo-org/tinygo/releases/download/v$VERSION/$TINYGO; wget https://github.com/tinygo-org/tinygo/releases/download/v$VERSION/$TINYGO;
sudo dpkg -i $TINYGO && rm $TINYGO; sudo dpkg -i $TINYGO && rm $TINYGO;
cd src/golang; cd src/golang;