You need to sign in or sign up before continuing.
Commit b3bc4452 authored by Damian Janowski's avatar Damian Janowski
Browse files

Avoid bug reports when Tcl is not installed.

parent fc879abe
...@@ -178,7 +178,7 @@ dep: ...@@ -178,7 +178,7 @@ dep:
$(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
test: redis-server test: redis-server
(cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}") @(cd ..; (which tclsh >/dev/null && tclsh tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}") || echo "You need to install Tcl in order to run tests.")
bench: bench:
./redis-benchmark ./redis-benchmark
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment