summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-16 09:50:20 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-16 09:50:20 -0700
commitf16e0a47ce25009a2ae2917b2f2feed525cfe3f8 (patch)
treef8334549a0d355f8d1e25c6a0b7d71022b57e54a /Makefile
parent9828d84f01147ffb87b372d20681f91325ecfcf0 (diff)
downloadchat-f16e0a47ce25009a2ae2917b2f2feed525cfe3f8.tar.gz
chat-f16e0a47ce25009a2ae2917b2f2feed525cfe3f8.tar.bz2
chat-f16e0a47ce25009a2ae2917b2f2feed525cfe3f8.zip
Fixing 669 removing -a flag from go cmds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 137bb0a82..cd82c27a3 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ travis:
cd web/react && $(ESLINT) --quiet components/* dispatcher/* pages/* stores/* utils/*
@$(GO) build $(GOFLAGS) ./...
- @$(GO) install $(GOFLAGS) -a ./...
+ @$(GO) install $(GOFLAGS) ./...
@mkdir -p logs
@@ -204,8 +204,8 @@ cleandb:
fi
dist: install
- @$(GO) build $(GOFLAGS) -i -a ./...
- @$(GO) install $(GOFLAGS) -a ./...
+ @$(GO) build $(GOFLAGS) -i ./...
+ @$(GO) install $(GOFLAGS) ./...
mkdir -p $(DIST_PATH)/bin
cp $(GOPATH)/bin/platform $(DIST_PATH)/bin