aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-01-16 22:09:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-01-16 22:09:51 +0000
commit6893fcaa9b86f04e545f616a7677f2da23982cc8 (patch)
tree39162b98756a0e2abf9c0e362c19f24bb11a261d
parent301ae1ae1bde66e51eef9d55d9835196341af792 (diff)
remove trailing comma too, even though I don't think it does any harm
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index e4f2e9d58..9eeaa3f78 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -374,7 +374,7 @@ sub startnew {
sub checkcmd {
my ($cmd)=@_;
my @paths=(split(":", $ENV{'PATH'}), "/usr/sbin", "/usr/local/sbin",
- "/sbin", "/usr/bin", "/usr/local/bin", );
+ "/sbin", "/usr/bin", "/usr/local/bin" );
for(@paths) {
if( -x "$_/$cmd") {
return "$_/$cmd";