commit | a14cbb614121db775e6198f6b29466b2dbc77347 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jun 03 10:49:38 2015 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jun 03 10:49:38 2015 +0100 |
tree | 055b3a0498ab0da945c61539a32ddcd8b2f8cae0 | |
parent | 7ee5ddd798201d6bcafe6acb10bf4f14e6e7ddfe [diff] |
Have config.pl return non-zero rather than warn
diff --git a/scripts/config.pl b/scripts/config.pl index 2685b4e..71dd217 100755 --- a/scripts/config.pl +++ b/scripts/config.pl
@@ -118,7 +118,7 @@ close $config_write; -warn "configuration section not found" if ($action eq "full" && !$done); -warn "$name not found" if ($action ne "full" && !$done); +die "configuration section not found" if ($action eq "full" && !$done); +die "$name not found" if ($action ne "full" && !$done); __END__