From 42a4356a7d51f6d023b5f6691ef82d154743b2f7 Mon Sep 17 00:00:00 2001
From: hunterlong <info@socialeck.com>
Date: Mon, 11 May 2020 22:14:57 -0700
Subject: [PATCH] gh builds

---
 .github/workflows/master.yml | 3 ---
 Makefile                     | 2 +-
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 37d55d08..dd1a73cc 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -247,9 +247,6 @@ jobs:
           name: static-rice-box
           path: ./source
 
-      - name: Setup tmate session
-        uses: mxschmitt/action-tmate@v2
-
       - name: Build Binaries
         env:
           VERSION: ${{ env.VERSION }}
diff --git a/Makefile b/Makefile
index c7d3e9b4..35e1b1a4 100644
--- a/Makefile
+++ b/Makefile
@@ -168,7 +168,7 @@ build-darwin:
 build-linux:
 	CGO_ENABLED=1 GO111MODULE="on" GOOS=linux GOARCH=amd64 \
 		go build -a -ldflags "-s -w -extldflags -static -X main.VERSION=${VERSION}" -o releases/statping-linux-amd64/statping --tags "linux" ./cmd
-	CGO_ENABLED=1 GO111MODULE="on" GOOS=linux GOARCH=386 \
+	GO111MODULE="on" GOOS=linux GOARCH=386 \
 		go build -a -ldflags "-s -w -extldflags -static -X main.VERSION=${VERSION}" -o releases/statping-linux-386/statping --tags "linux" ./cmd
 
 build-linux-arm: