diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-06-19 01:59:52 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-06-19 01:59:52 +0200 |
commit | 7d94163380d43fa609681f6081e2d603e56f8e71 (patch) | |
tree | f83a68cfb291e4538128cc254efb13d49695d1e8 | |
parent | 22d2029c8cfab28e698264b2d37d6c51b377ca5a (diff) | |
download | sbotools2-7d94163380d43fa609681f6081e2d603e56f8e71.tar.xz |
sboconfig: remove unneeded "early" return
-rwxr-xr-x | sboconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -167,7 +167,7 @@ sub config_write { warn $conffh; exit $exit; } - print {$conffh} $contents or return(); + print {$conffh} $contents; } else { # no config file, easiest case of all. my ($fh, $exit) = open_fh($conf_file, '>'); |