OSDN Git Service

Fixed a bug that -S option prevented recording the completion.
authorMamoru Sakaue / MwGhennndo <glmwghennndo@users.sourceforge.jp>
Tue, 11 Sep 2018 08:31:58 +0000 (16:31 +0800)
committerMamoru Sakaue / MwGhennndo <glmwghennndo@users.sourceforge.jp>
Tue, 11 Sep 2018 08:31:58 +0000 (16:31 +0800)
 Changes to be committed:
modified:   lib/libcommand_do.sh
modified:   lib/libmain.sh

lib/libcommand_do.sh
lib/libmain.sh

index 8d5f91b..f2317f4 100644 (file)
@@ -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
index 0f1de20..2335c4c 100644 (file)
@@ -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]+))$'
 }