aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-06-19 01:59:52 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-06-19 01:59:52 +0200
commit7d94163380d43fa609681f6081e2d603e56f8e71 (patch)
treef83a68cfb291e4538128cc254efb13d49695d1e8
parent22d2029c8cfab28e698264b2d37d6c51b377ca5a (diff)
downloadsbotools2-7d94163380d43fa609681f6081e2d603e56f8e71.tar.xz
sboconfig: remove unneeded "early" return
-rwxr-xr-xsboconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/sboconfig b/sboconfig
index 708310e..bd6c76f 100755
--- 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, '>');