From 41fe193d1e0bfaf3d276fc092fac0374cb87a064 Mon Sep 17 00:00:00 2001 From: Sacha Ligthert Date: Tue, 27 Dec 2022 00:54:17 +0100 Subject: [PATCH] Quick and easily build the binaries. --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..778ca21 --- /dev/null +++ b/build.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +env GOOS=linux GOARCH=amd64 go build -o timepercentage.linux-amd64.exe +env GOOS=windows GOARCH=amd64 go build -o timepercentage.windows-amd64.exe \ No newline at end of file