summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-08-07 11:07:10 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-08-07 11:07:10 -0400
commit51174ac92f3594e7c540266ba54bd5742220fd5a (patch)
tree19e71f3622c4013f940ce551f9e5b9e6be12b8d2
parentbf1537ac13d194ec02a16d9917bf16b00a96b6a7 (diff)
parent3e57ef93b272a426a58dd610e6fd65151afcb5e6 (diff)
downloadchat-51174ac92f3594e7c540266ba54bd5742220fd5a.tar.gz
chat-51174ac92f3594e7c540266ba54bd5742220fd5a.tar.bz2
chat-51174ac92f3594e7c540266ba54bd5742220fd5a.zip
Merge pull request #349 from mattermost/makefile-redis-remove
Removing redis from makefile
-rw-r--r--Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/Makefile b/Makefile
index 370289507..30babfa39 100644
--- a/Makefile
+++ b/Makefile
@@ -101,14 +101,6 @@ install:
docker start mattermost-mysql > /dev/null; \
fi
- @if [ $(shell docker ps -a | grep -ci mattermost-redis) -eq 0 ]; then \
- echo starting mattermost-redis; \
- docker run --name mattermost-redis -p 6379:6379 -d redis > /dev/null; \
- elif [ $(shell docker ps | grep -ci mattermost-redis) -eq 0 ]; then \
- echo restarting mattermost-redis; \
- docker start mattermost-redis > /dev/null; \
- fi
-
@cd web/react/ && npm install
check: install
@@ -159,12 +151,6 @@ clean:
docker rm -v mattermost-mysql > /dev/null; \
fi
- @if [ $(shell docker ps -a | grep -ci mattermost-redis) -eq 1 ]; then \
- echo stopping mattermost-redis; \
- docker stop mattermost-redis > /dev/null; \
- docker rm -v mattermost-redis > /dev/null; \
- fi
-
rm -rf web/react/node_modules
rm -f web/static/js/bundle*.js
rm -f web/static/css/styles.css
@@ -216,12 +202,6 @@ cleandb:
docker stop mattermost-mysql > /dev/null; \
docker rm -v mattermost-mysql > /dev/null; \
fi
-
- @if [ $(shell docker ps -a | grep -ci mattermost-redis) -eq 1 ]; then \
- docker stop mattermost-redis > /dev/null; \
- docker rm -v mattermost-redis > /dev/null; \
- fi
-
dist: install
@$(GO) build $(GOFLAGS) -i -a ./...