diff options
author | Brian Cully <bjc@kublai.com> | 2022-06-12 10:36:51 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-06-12 10:36:51 -0400 |
commit | 5a61fd826df757d585966795936058e5136e7414 (patch) | |
tree | 72094bbb95e5b84890db3b539288e3e952ab857b /t/lib.t | |
parent | 7f870a8a33ed05bd74cfde1f8206f660ce121637 (diff) | |
download | spamcat-5a61fd826df757d585966795936058e5136e7414.tar.gz spamcat-5a61fd826df757d585966795936058e5136e7414.zip |
Use PATH environment for sqlite3 executable.
Diffstat (limited to 't/lib.t')
-rw-r--r-- | t/lib.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; } |