Skip to content

Commit

Permalink
Make makefile remove temp files as it makes tests to fail sometimes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosnils committed Feb 3, 2014
1 parent 56cec8f commit 35291bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ start: cleanup
echo "$$REDIS_CLUSTER_NODE3_CONF" | redis-server -

cleanup:
rm -vf /tmp/redis_cluster_node*.conf
- rm -vf /tmp/redis_cluster_node*.conf 2>/dev/null
- rm dump.rdb appendonly.aof - 2>/dev/null

This comment has been minimized.

Copy link
@HeartSaVioR

HeartSaVioR Feb 3, 2014

Contributor

It is really needed! I've got same problem too.


stop:
kill `cat /tmp/redis1.pid`
Expand Down

0 comments on commit 35291bf

Please sign in to comment.