1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix typo in backcompat.test.

FossilOrigin-Name: 6a0cbb272c3f0c1dfdeed381ba92f2f2f16ae824
This commit is contained in:
dan
2010-08-20 12:43:01 +00:00
parent a3e63c4a74
commit 4f05e38f09
4 changed files with 11 additions and 11 deletions

View File

@ -39,7 +39,7 @@ if {$tcl_platform(platform)=="windows"} {
set pattern [string map {\.exe {}} $pattern]
}
foreach file [glob -nocomplain $pattern] {
if {[file executable $file] && } {lappend binaries $file}
if {[file executable $file]} {lappend binaries $file}
}
if {[llength $binaries]==0} {
puts "WARNING: No historical binaries to test against."