From: Rogan Hamby Date: Mon, 12 Feb 2018 19:17:33 +0000 (-0500) Subject: moving config into else clause for cleanliness X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=b4a45202fa9b19f2e38c22bafa36388d1e004dfe moving config into else clause for cleanliness --- diff --git a/text/csv2sql b/text/csv2sql index 37a136d..9ee8203 100755 --- a/text/csv2sql +++ b/text/csv2sql @@ -14,11 +14,11 @@ my $cfg; my $csv_config; sub init { - our %config; if ($PGHOST and $PGPORT and $PGUSER and $PGDATABASE) { $dbh = connect_db($PGDATABASE,$PGUSER,undef,$PGHOST) or die $DBI::errstr; } else { + our %config; do '/openils/conf/offline-config.pl'; $dbh = DBI->connect( $config{dsn}, $config{usr}, $config{pw} ) or die $DBI::errstr; }