mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 06:08:38 -04:00
made SQLiteUtil a bit less verbose
This commit is contained in:
parent
eb69d88479
commit
fa0b8edaea
1 changed files with 3 additions and 2 deletions
|
@ -13,6 +13,7 @@ our @EXPORT = qw/
|
|||
|
||||
our $ROOT = "$FindBin::Bin/..";
|
||||
our $SRCDIR = "$ROOT/tmp/src";
|
||||
our $VERBOSE = $ENV{SQLITE_UTIL_VERBOSE};
|
||||
|
||||
my %since = (
|
||||
IOERR_LOCK => '3006002',
|
||||
|
@ -182,7 +183,7 @@ sub extract_constants {
|
|||
checkpoint_operation_parameters | checkpoint_mode |
|
||||
conflict_resolution | text_encodings
|
||||
/x) {
|
||||
print "$tag is ignored\n";
|
||||
print "$tag is ignored\n" if $VERBOSE;
|
||||
$tag = '';
|
||||
}
|
||||
next;
|
||||
|
@ -278,7 +279,7 @@ sub check_api_history {
|
|||
require Array::Diff;
|
||||
my %current;
|
||||
for my $version (versions()) {
|
||||
print "checking $version...\n";
|
||||
print "checking $version...\n" if $VERBOSE;
|
||||
my $dir = srcdir($version);
|
||||
unless ($dir && -d $dir) {
|
||||
$dir = mirror($version) or next;
|
||||
|
|
Loading…
Add table
Reference in a new issue