sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit 7d94163380d43fa609681f6081e2d603e56f8e71
parent 22d2029c8cfab28e698264b2d37d6c51b377ca5a
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Sun, 19 Jun 2016 01:59:52 +0200

sboconfig: remove unneeded "early" return

Diffstat:
Msboconfig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sboconfig b/sboconfig @@ -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, '>');