aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2022-06-12 10:36:51 -0400
committerBrian Cully <bjc@kublai.com>2022-06-12 10:36:51 -0400
commit5a61fd826df757d585966795936058e5136e7414 (patch)
tree72094bbb95e5b84890db3b539288e3e952ab857b
parent7f870a8a33ed05bd74cfde1f8206f660ce121637 (diff)
downloadspamcat-5a61fd826df757d585966795936058e5136e7414.tar.gz
spamcat-5a61fd826df757d585966795936058e5136e7414.zip
Use PATH environment for sqlite3 executable.
-rw-r--r--t/lib.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib.t b/t/lib.t
index 89f4bb7..395488d 100644
--- a/t/lib.t
+++ b/t/lib.t
@@ -16,7 +16,7 @@ BEGIN {
system("rm -rf $tmpdir") == 0
or die "Couldn't remove ‘$tmpdir’: $!\n";
mkdir $tmpdir;
- system("/usr/local/bin/sqlite3 $conf{dbpath} < config/create-tables.sql") == 0
+ system("sqlite3 $conf{dbpath} < config/create-tables.sql") == 0
or die "Couldn't create ‘$conf{dbpath}’: $!\n";
}