We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9a0a2 commit ea676daCopy full SHA for ea676da
makefile
@@ -1,5 +1,5 @@
1
TEST_FILES := $(shell find test -name *_test.rb -type f)
2
-REDIS_BRANCH := unstable
+REDIS_BRANCH ?= unstable
3
TMP := tmp
4
BUILD_DIR := ${TMP}/cache/redis-${REDIS_BRANCH}
5
TARBALL := ${TMP}/redis-${REDIS_BRANCH}.tar.gz
@@ -24,7 +24,6 @@ stop:
24
(test -f ${PID_PATH} && (kill $$(cat ${PID_PATH}) || true) && rm -f ${PID_PATH}) || true
25
26
start: ${BINARY}
27
- echo ${BINARY}
28
${BINARY} \
29
--daemonize yes \
30
--pidfile ${PID_PATH} \
0 commit comments