mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
|
#!/bin/bash
|
||
|
TCL=tclsh8.5
|
||
|
which $TCL
|
||
|
if [ "$?" != "0" ]
|
||
|
then
|
||
|
echo "You need '$TCL' in order to run the Redis test"
|
||
|
exit 1
|
||
|
fi
|
||
|
$TCL tests/test_helper.tcl $*
|