File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -880,34 +880,34 @@ COLOR_RESET='\e[0m'
880880
881881msg_heading ()
882882{
883- printf " \n********************** %s **********************\n" " $@ "
883+ printf " \n********************** %b **********************\n" " $@ "
884884}
885885
886886msg_verbose ()
887887{
888888 if [[ " ${DISPLAY_VERBOSE} " == " yes" ]]; then
889- printf " ${COLOR_CYAN} %s ${COLOR_RESET} \n" " $@ "
889+ printf " ${COLOR_CYAN} %b ${COLOR_RESET} \n" " $@ "
890890 fi
891891}
892892
893893msg ()
894894{
895- printf " %s \n" " $@ "
895+ printf " %b \n" " $@ "
896896}
897897
898898msg_success ()
899899{
900- printf " ${COLOR_GREEN} %s ${COLOR_RESET} \n" " $@ "
900+ printf " ${COLOR_GREEN} %b ${COLOR_RESET} \n" " $@ "
901901}
902902
903903msg_warn ()
904904{
905- printf " ${COLOR_YELLOW} %s ${COLOR_RESET} \n" " $@ "
905+ printf " ${COLOR_YELLOW} %b ${COLOR_RESET} \n" " $@ "
906906}
907907
908908msg_error ()
909909{
910- >&2 printf " ${COLOR_RED} %s ${COLOR_RESET} \n" " $@ "
910+ >&2 printf " ${COLOR_RED} %b ${COLOR_RESET} \n" " $@ "
911911}
912912
913913main " $@ "
Original file line number Diff line number Diff line change @@ -943,34 +943,34 @@ COLOR_RESET='\e[0m'
943943
944944msg_heading ()
945945{
946- printf " \n********************** %s **********************\n" " $@ "
946+ printf " \n********************** %b **********************\n" " $@ "
947947}
948948
949949msg_verbose ()
950950{
951951 if [[ " ${DISPLAY_VERBOSE} " == " yes" ]]; then
952- printf " ${COLOR_CYAN} %s ${COLOR_RESET} \n" " $@ "
952+ printf " ${COLOR_CYAN} %b ${COLOR_RESET} \n" " $@ "
953953 fi
954954}
955955
956956msg ()
957957{
958- printf " %s \n" " $@ "
958+ printf " %b \n" " $@ "
959959}
960960
961961msg_success ()
962962{
963- printf " ${COLOR_GREEN} %s ${COLOR_RESET} \n" " $@ "
963+ printf " ${COLOR_GREEN} %b ${COLOR_RESET} \n" " $@ "
964964}
965965
966966msg_warn ()
967967{
968- printf " ${COLOR_YELLOW} %s ${COLOR_RESET} \n" " $@ "
968+ printf " ${COLOR_YELLOW} %b ${COLOR_RESET} \n" " $@ "
969969}
970970
971971msg_error ()
972972{
973- >&2 printf " ${COLOR_RED} %s ${COLOR_RESET} \n" " $@ "
973+ >&2 printf " ${COLOR_RED} %b ${COLOR_RESET} \n" " $@ "
974974}
975975
976976main " $@ "
Original file line number Diff line number Diff line change @@ -865,34 +865,34 @@ COLOR_RESET='\e[0m'
865865
866866msg_heading ()
867867{
868- printf " \n********************** %s **********************\n" " $@ "
868+ printf " \n********************** %b **********************\n" " $@ "
869869}
870870
871871msg_verbose ()
872872{
873873 if [[ " ${DISPLAY_VERBOSE} " == " yes" ]]; then
874- printf " ${COLOR_CYAN} %s ${COLOR_RESET} \n" " $@ "
874+ printf " ${COLOR_CYAN} %b ${COLOR_RESET} \n" " $@ "
875875 fi
876876}
877877
878878msg ()
879879{
880- printf " %s \n" " $@ "
880+ printf " %b \n" " $@ "
881881}
882882
883883msg_success ()
884884{
885- printf " ${COLOR_GREEN} %s ${COLOR_RESET} \n" " $@ "
885+ printf " ${COLOR_GREEN} %b ${COLOR_RESET} \n" " $@ "
886886}
887887
888888msg_warn ()
889889{
890- printf " ${COLOR_YELLOW} %s ${COLOR_RESET} \n" " $@ "
890+ printf " ${COLOR_YELLOW} %b ${COLOR_RESET} \n" " $@ "
891891}
892892
893893msg_error ()
894894{
895- >&2 printf " ${COLOR_RED} %s ${COLOR_RESET} \n" " $@ "
895+ >&2 printf " ${COLOR_RED} %b ${COLOR_RESET} \n" " $@ "
896896}
897897
898898main " $@ "
Original file line number Diff line number Diff line change @@ -135,6 +135,12 @@ if "!libbitcoin_system_TAG!" == "" (
135135 if %ERRORLEVEL% neq 0 (
136136 exit /b %ERRORLEVEL%
137137 )
138+
139+ call :msg_success " Build process completed successfully."
140+ if not defined CI (
141+ pause
142+ )
143+
138144 exit /b 0
139145
140146:parse_input
You can’t perform that action at this time.
0 commit comments