diff options
Diffstat (limited to 'rhimport-ra')
-rwxr-xr-x | rhimport-ra | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rhimport-ra b/rhimport-ra index bbe6d26..0c0f49f 100755 --- a/rhimport-ra +++ b/rhimport-ra @@ -56,9 +56,9 @@ my $dbh = DBI->connect("DBI:mysql:$DB:$DBHOST","$DBUSER","$DBPW") or die "Databa my @allowed_dbs = rhimport::get_dropboxes($dbh, $user, $group); if(scalar(@allowed_dbs) != 1) { - print "found multiple Dropboxes for this group?!\n"; + print "found multiple or no Dropboxes for this group?!\n"; $dbh->disconnect(); - exit 0; + exit 1; } my $dropbox = $allowed_dbs[0]->{'PATH'}; my $to_cart = $allowed_dbs[0]->{'TO_CART'}; |