From 2b8ca2a74d1b83fdd200cae5efd3ad440c7c28f5 Mon Sep 17 00:00:00 2001 From: TJ Horner Date: Thu, 28 Feb 2019 16:58:48 -0800 Subject: [PATCH] add run task to makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ca7739..8f5146e 100644 --- a/Makefile +++ b/Makefile @@ -31,4 +31,7 @@ install: build @echo "e6dl was installed to $(INSTALLPATH)/e6dl. Run make uninstall to get rid of it, or just remove the binary yourself." uninstall: - rm $(INSTALLPATH)/e6dl \ No newline at end of file + rm $(INSTALLPATH)/e6dl + +run: + @- go run src/*.go \ No newline at end of file