From 576e1c50461192635fff9a02bd51ce0f487e455d Mon Sep 17 00:00:00 2001 From: lululombard Date: Sat, 6 May 2023 17:08:56 +0200 Subject: [PATCH] Fix build --- rcsm/config.go | 2 +- scripts/build.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/rcsm/config.go b/rcsm/config.go index e06f541..d62c55c 100644 --- a/rcsm/config.go +++ b/rcsm/config.go @@ -10,7 +10,7 @@ import ( var ( // Version is the current version of rcsm - Version string = "1.1.2" + Version string = "1.1.3" // EnvFile is the path to the .env file config EnvFile string = ".env" diff --git a/scripts/build.sh b/scripts/build.sh index 92c589e..9d8587c 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,6 +2,8 @@ set -e +export CGO_ENABLED=0 + mkdir -p bin echo "Compiling for linux/386"