commit ec7094711846696aeef7d499509c2761404d0048
parent a1c162aac9187af6cfef96fb2dabd7765984eb6c
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Tue, 23 Feb 2016 00:00:21 +0100
update_manpages: return correctly when not running with all switches
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/tools/update_man_pages.sh b/tools/update_man_pages.sh
@@ -118,11 +118,13 @@ update_git() {
return 0
}
+date_return=0
if [[ "$date" == "true" ]]; then
update_date
date_return=$?
fi
+git_return=0
if [[ "$git" == "true" ]]; then
update_git
git_return=$?