Skip to content

Commit 420d23a

Browse files
committed
Minor updates.
1 parent 3f226fa commit 420d23a

4 files changed

Lines changed: 24 additions & 18 deletions

File tree

builds/cmake/install-cmake.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -880,34 +880,34 @@ COLOR_RESET='\e[0m'
880880

881881
msg_heading()
882882
{
883-
printf "\n********************** %s **********************\n" "$@"
883+
printf "\n********************** %b **********************\n" "$@"
884884
}
885885

886886
msg_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

893893
msg()
894894
{
895-
printf "%s\n" "$@"
895+
printf "%b\n" "$@"
896896
}
897897

898898
msg_success()
899899
{
900-
printf "${COLOR_GREEN}%s${COLOR_RESET}\n" "$@"
900+
printf "${COLOR_GREEN}%b${COLOR_RESET}\n" "$@"
901901
}
902902

903903
msg_warn()
904904
{
905-
printf "${COLOR_YELLOW}%s${COLOR_RESET}\n" "$@"
905+
printf "${COLOR_YELLOW}%b${COLOR_RESET}\n" "$@"
906906
}
907907

908908
msg_error()
909909
{
910-
>&2 printf "${COLOR_RED}%s${COLOR_RESET}\n" "$@"
910+
>&2 printf "${COLOR_RED}%b${COLOR_RESET}\n" "$@"
911911
}
912912

913913
main "$@"

builds/cmake/install-presets.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -943,34 +943,34 @@ COLOR_RESET='\e[0m'
943943

944944
msg_heading()
945945
{
946-
printf "\n********************** %s **********************\n" "$@"
946+
printf "\n********************** %b **********************\n" "$@"
947947
}
948948

949949
msg_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

956956
msg()
957957
{
958-
printf "%s\n" "$@"
958+
printf "%b\n" "$@"
959959
}
960960

961961
msg_success()
962962
{
963-
printf "${COLOR_GREEN}%s${COLOR_RESET}\n" "$@"
963+
printf "${COLOR_GREEN}%b${COLOR_RESET}\n" "$@"
964964
}
965965

966966
msg_warn()
967967
{
968-
printf "${COLOR_YELLOW}%s${COLOR_RESET}\n" "$@"
968+
printf "${COLOR_YELLOW}%b${COLOR_RESET}\n" "$@"
969969
}
970970

971971
msg_error()
972972
{
973-
>&2 printf "${COLOR_RED}%s${COLOR_RESET}\n" "$@"
973+
>&2 printf "${COLOR_RED}%b${COLOR_RESET}\n" "$@"
974974
}
975975

976976
main "$@"

builds/gnu/install-gnu.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -865,34 +865,34 @@ COLOR_RESET='\e[0m'
865865

866866
msg_heading()
867867
{
868-
printf "\n********************** %s **********************\n" "$@"
868+
printf "\n********************** %b **********************\n" "$@"
869869
}
870870

871871
msg_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

878878
msg()
879879
{
880-
printf "%s\n" "$@"
880+
printf "%b\n" "$@"
881881
}
882882

883883
msg_success()
884884
{
885-
printf "${COLOR_GREEN}%s${COLOR_RESET}\n" "$@"
885+
printf "${COLOR_GREEN}%b${COLOR_RESET}\n" "$@"
886886
}
887887

888888
msg_warn()
889889
{
890-
printf "${COLOR_YELLOW}%s${COLOR_RESET}\n" "$@"
890+
printf "${COLOR_YELLOW}%b${COLOR_RESET}\n" "$@"
891891
}
892892

893893
msg_error()
894894
{
895-
>&2 printf "${COLOR_RED}%s${COLOR_RESET}\n" "$@"
895+
>&2 printf "${COLOR_RED}%b${COLOR_RESET}\n" "$@"
896896
}
897897

898898
main "$@"

builds/msvc/build-msvc.cmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)