From 732e88a263b222c1745ef476d399e6db29089875 Mon Sep 17 00:00:00 2001 From: Dejvino Date: Tue, 20 Oct 2020 00:35:59 +0200 Subject: [PATCH] Build script --- .gitignore | 3 +++ build.sh | 2 ++ 2 files changed, 5 insertions(+) create mode 100755 build.sh diff --git a/.gitignore b/.gitignore index 72b37e9..b9d4e6b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ *.test stash/ + +# output +boxen diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..dbb6680 --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/bin/bash +GO111MODULE=on go build -o boxen main.go