File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -971,34 +971,34 @@ COLOR_RESET='\e[0m'
971971
972972msg_heading ()
973973{
974- printf " \n********************** %s **********************\n" " $@ "
974+ printf " \n********************** %b **********************\n" " $@ "
975975}
976976
977977msg_verbose ()
978978{
979979 if [[ " ${DISPLAY_VERBOSE} " == " yes" ]]; then
980- printf " ${COLOR_CYAN} %s ${COLOR_RESET} \n" " $@ "
980+ printf " ${COLOR_CYAN} %b ${COLOR_RESET} \n" " $@ "
981981 fi
982982}
983983
984984msg ()
985985{
986- printf " %s \n" " $@ "
986+ printf " %b \n" " $@ "
987987}
988988
989989msg_success ()
990990{
991- printf " ${COLOR_GREEN} %s ${COLOR_RESET} \n" " $@ "
991+ printf " ${COLOR_GREEN} %b ${COLOR_RESET} \n" " $@ "
992992}
993993
994994msg_warn ()
995995{
996- printf " ${COLOR_YELLOW} %s ${COLOR_RESET} \n" " $@ "
996+ printf " ${COLOR_YELLOW} %b ${COLOR_RESET} \n" " $@ "
997997}
998998
999999msg_error ()
10001000{
1001- >&2 printf " ${COLOR_RED} %s ${COLOR_RESET} \n" " $@ "
1001+ >&2 printf " ${COLOR_RED} %b ${COLOR_RESET} \n" " $@ "
10021002}
10031003
10041004main " $@ "
Original file line number Diff line number Diff line change @@ -1034,34 +1034,34 @@ COLOR_RESET='\e[0m'
10341034
10351035msg_heading ()
10361036{
1037- printf " \n********************** %s **********************\n" " $@ "
1037+ printf " \n********************** %b **********************\n" " $@ "
10381038}
10391039
10401040msg_verbose ()
10411041{
10421042 if [[ " ${DISPLAY_VERBOSE} " == " yes" ]]; then
1043- printf " ${COLOR_CYAN} %s ${COLOR_RESET} \n" " $@ "
1043+ printf " ${COLOR_CYAN} %b ${COLOR_RESET} \n" " $@ "
10441044 fi
10451045}
10461046
10471047msg ()
10481048{
1049- printf " %s \n" " $@ "
1049+ printf " %b \n" " $@ "
10501050}
10511051
10521052msg_success ()
10531053{
1054- printf " ${COLOR_GREEN} %s ${COLOR_RESET} \n" " $@ "
1054+ printf " ${COLOR_GREEN} %b ${COLOR_RESET} \n" " $@ "
10551055}
10561056
10571057msg_warn ()
10581058{
1059- printf " ${COLOR_YELLOW} %s ${COLOR_RESET} \n" " $@ "
1059+ printf " ${COLOR_YELLOW} %b ${COLOR_RESET} \n" " $@ "
10601060}
10611061
10621062msg_error ()
10631063{
1064- >&2 printf " ${COLOR_RED} %s ${COLOR_RESET} \n" " $@ "
1064+ >&2 printf " ${COLOR_RED} %b ${COLOR_RESET} \n" " $@ "
10651065}
10661066
10671067main " $@ "
Original file line number Diff line number Diff line change @@ -963,34 +963,34 @@ COLOR_RESET='\e[0m'
963963
964964msg_heading ()
965965{
966- printf " \n********************** %s **********************\n" " $@ "
966+ printf " \n********************** %b **********************\n" " $@ "
967967}
968968
969969msg_verbose ()
970970{
971971 if [[ " ${DISPLAY_VERBOSE} " == " yes" ]]; then
972- printf " ${COLOR_CYAN} %s ${COLOR_RESET} \n" " $@ "
972+ printf " ${COLOR_CYAN} %b ${COLOR_RESET} \n" " $@ "
973973 fi
974974}
975975
976976msg ()
977977{
978- printf " %s \n" " $@ "
978+ printf " %b \n" " $@ "
979979}
980980
981981msg_success ()
982982{
983- printf " ${COLOR_GREEN} %s ${COLOR_RESET} \n" " $@ "
983+ printf " ${COLOR_GREEN} %b ${COLOR_RESET} \n" " $@ "
984984}
985985
986986msg_warn ()
987987{
988- printf " ${COLOR_YELLOW} %s ${COLOR_RESET} \n" " $@ "
988+ printf " ${COLOR_YELLOW} %b ${COLOR_RESET} \n" " $@ "
989989}
990990
991991msg_error ()
992992{
993- >&2 printf " ${COLOR_RED} %s ${COLOR_RESET} \n" " $@ "
993+ >&2 printf " ${COLOR_RED} %b ${COLOR_RESET} \n" " $@ "
994994}
995995
996996main " $@ "
Original file line number Diff line number Diff line change @@ -199,6 +199,12 @@ if "!libbitcoin_server_TAG!" == "" (
199199 if %ERRORLEVEL% neq 0 (
200200 exit /b %ERRORLEVEL%
201201 )
202+
203+ call :msg_success " Build process completed successfully."
204+ if not defined CI (
205+ pause
206+ )
207+
202208 exit /b 0
203209
204210:parse_input
You can’t perform that action at this time.
0 commit comments