From 859c34f544608f48e95ee63b5dfde3d61dab91fe Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Thu, 4 Feb 2016 21:59:13 +0900 Subject: [PATCH] add Makefile --- Makefile | 5 +++++ scripts/make-install.sh | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 Makefile create mode 100755 scripts/make-install.sh diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ba5448b --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +install: + ./scripts/make-install.sh + +start: + godep go run main.go diff --git a/scripts/make-install.sh b/scripts/make-install.sh new file mode 100755 index 0000000..e143aa9 --- /dev/null +++ b/scripts/make-install.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +go get github.com/alecthomas/gometalinter +gometalinter --install --update