Skip to content

Commit 35291bf

Browse files
committed
Make makefile remove temp files as it makes tests to fail sometimes
1 parent 56cec8f commit 35291bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ start: cleanup
166166
echo "$$REDIS_CLUSTER_NODE3_CONF" | redis-server -
167167

168168
cleanup:
169-
rm -vf /tmp/redis_cluster_node*.conf
169+
- rm -vf /tmp/redis_cluster_node*.conf 2>/dev/null
170+
- rm dump.rdb appendonly.aof - 2>/dev/null
170171

171172
stop:
172173
kill `cat /tmp/redis1.pid`

0 commit comments

Comments
 (0)