From 719ab6c074c1104a2a8e165486dbbd236ca49e11 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 16 Jan 2017 13:26:32 -0500 Subject: Allow a default repositoriy to be set in 'config.yml' Minor changes to build script. --- Build.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Build.sh') diff --git a/Build.sh b/Build.sh index 14c3a03..8a31e2c 100755 --- a/Build.sh +++ b/Build.sh @@ -7,16 +7,16 @@ fi go build -o bin/steam-export . -GOOS=windows -GOARCH="386" -go build -o bin/steam-export-$GOOS-$GOARCH . - -GOOS=windows -GOARCH=amd64 +export GOOS=windows +export GOARCH="386" go build -o bin/steam-export-$GOOS-$GOARCH.exe . -GOOS=linux -GOARCH=amd64 +export GOOS=windows +export GOARCH=amd64 go build -o bin/steam-export-$GOOS-$GOARCH.exe . -cp bin/steam-export-windows-amd64.exe /Fishtank/Mitch/SteamDrive/SteamGames/ +export GOOS=linux +export GOARCH=amd64 +go build -o bin/steam-export-$GOOS-$GOARCH . + +cp bin/* /Fishtank/Mitch/SteamDrive/scripts/ -- cgit v1.2.3