From 66e7c05ab1772fff4814d9ff99f304fdad3b1ef1 Mon Sep 17 00:00:00 2001 From: Rene Kaufmann Date: Sat, 7 Oct 2017 14:15:06 +0200 Subject: [PATCH] build.sh: fixed indentation --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index fba8a7de..368d8d16 100755 --- a/build.sh +++ b/build.sh @@ -10,9 +10,9 @@ do echo "Build remco for $os" GOOS=${os} CGO_ENABLED=0 go build -a -tags netgo -o bin/remco_${os} -ldflags \ "-w -X 'main.version=$version' - -X 'main.buildDate=$date' - -X 'main.commit=$commit'" \ - github.com/HeavyHorst/remco/cmd/remco + -X 'main.buildDate=$date' + -X 'main.commit=$commit'" \ + github.com/HeavyHorst/remco/cmd/remco cd bin && zip -r remco_${version}_${os}_amd64.zip remco_${os} && cd .. done