From 2eca9c19a96aeef8f1b5deabe6dbd71fc688d566 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sat, 21 Nov 2020 15:45:25 -0500 Subject: Adjust the build script --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 916394a..90ce8b1 100644 --- a/build.sh +++ b/build.sh @@ -6,16 +6,16 @@ if ! [ -d bin ] ; then mkdir bin fi -commands=cli +commands="cli web" for cmd in $commands ; do export GOOS=windows export GOARCH=amd64 -go build -o bin/steam-export-$GOOS-$GOARCH.exe ./cmd/$cmd +go build -o bin/steam-export-$cmd-$GOOS-$GOARCH.exe ./cmd/$cmd export GOOS=linux export GOARCH=amd64 -go build -o bin/steam-export-$GOOS-$GOARCH ./cmd/$cmd +go build -o bin/steam-export-$cmd-$GOOS-$GOARCH ./cmd/$cmd done -- cgit v1.2.3