From: Mamoru Sakaue / MwGhennndo Date: Tue, 11 Sep 2018 08:31:58 +0000 (+0800) Subject: Fixed a bug that -S option prevented recording the completion. X-Git-Url: http://git.sourceforge.jp/view?p=portsreinstall%2Fcurrent.git;a=commitdiff_plain;h=34a3006981142a29ee43dd658e486ff1c2b09b8b Fixed a bug that -S option prevented recording the completion. Changes to be committed: modified: lib/libcommand_do.sh modified: lib/libmain.sh --- diff --git a/lib/libcommand_do.sh b/lib/libcommand_do.sh index 8d5f91b..f2317f4 100644 --- a/lib/libcommand_do.sh +++ b/lib/libcommand_do.sh @@ -1450,17 +1450,17 @@ command_do_ending_process () if [ $opt_no_opening_message = yes ] then message_echo "Done as ${APPNAME}" - return + else + message_section_title "COMPLETELY DONE" fi - message_section_title "COMPLETELY DONE" if [ $opt_fetch_only = no -a $opt_dry_run = no ] - then + then PROGRAM_DEPENDS='REBUILD_PKGDB CLEANUP_OBSLETE_DISTFILES ' _program_exec_and_record_completion__operation () { } program_exec_and_record_completion ALL_COMPLETE - message_echo "- E N D -" + [ $opt_no_opening_message = yes ] || message_echo "- E N D -" else message_echo "INFO: Redo for the real (re)installation." fi diff --git a/lib/libmain.sh b/lib/libmain.sh index 0f1de20..2335c4c 100644 --- a/lib/libmain.sh +++ b/lib/libmain.sh @@ -12,7 +12,7 @@ main_set_version () MYVERSION=4.1.0 COMPATIBLE_VERSIONS='^(4\.[1]\.[0-9])$' # Template for development versions - MYVERSION=4.0.0+toward_4.1.0_20180911145019 + MYVERSION=4.0.0+toward_4.1.0_20180911163139 COMPATIBLE_VERSIONS='^(4\.[0-1]\.[0-9]]|4\.[0]\.[0]+(|\+toward_4\.[0-1]\.[0-9]+_[0-9]+))$' }