From 088d100f249a10a4488ce918def02e343f9f18af Mon Sep 17 00:00:00 2001 From: arnef Date: Wed, 7 Jul 2021 12:51:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20add=20linux=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 59df5f3..7fac82d 100644 --- a/Makefile +++ b/Makefile @@ -36,4 +36,11 @@ build-mac: go build -o dist/SshProxyTray.app/Contents/MacOS/sshproxytray main.go install-mac: - cp -r dist/SshProxyTray.app /Applications \ No newline at end of file + cp -r dist/SshProxyTray.app /Applications + +build-linux: + mkdir dist + go build -o dist/sshproxytray main.go + +install-linux: + mv dist/sshproxytray /usr/local/bin/sshproxytray \ No newline at end of file