From bdd2986b250753a1657478df165e2d2019928132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Dahl=20K=C3=A6rgaard?= Date: Thu, 11 Jan 2018 22:11:41 +0100 Subject: [PATCH] Add build commands to README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index aa5c00b..6daef03 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,12 @@ The Utility currently supports three features. * Delete Gameserver Account by ID (SteamID) If the utility receives an X-error_message Response Header, it will log the message to console, and exit. + +## Build commands + +```sh +# Windows +GOOS=windows GOARCH=amd64 go build -o sgtu.exe main.go +# Linux +GOOS=linux GOARCH=amd64 go build -o sgtu main.go +```