Skip to content

Commit 09ec22a

Browse files
committed
Minor updates.
1 parent 4f32a3f commit 09ec22a

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
@@ -971,34 +971,34 @@ COLOR_RESET='\e[0m'
971971

972972
msg_heading()
973973
{
974-
printf "\n********************** %s **********************\n" "$@"
974+
printf "\n********************** %b **********************\n" "$@"
975975
}
976976

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

984984
msg()
985985
{
986-
printf "%s\n" "$@"
986+
printf "%b\n" "$@"
987987
}
988988

989989
msg_success()
990990
{
991-
printf "${COLOR_GREEN}%s${COLOR_RESET}\n" "$@"
991+
printf "${COLOR_GREEN}%b${COLOR_RESET}\n" "$@"
992992
}
993993

994994
msg_warn()
995995
{
996-
printf "${COLOR_YELLOW}%s${COLOR_RESET}\n" "$@"
996+
printf "${COLOR_YELLOW}%b${COLOR_RESET}\n" "$@"
997997
}
998998

999999
msg_error()
10001000
{
1001-
>&2 printf "${COLOR_RED}%s${COLOR_RESET}\n" "$@"
1001+
>&2 printf "${COLOR_RED}%b${COLOR_RESET}\n" "$@"
10021002
}
10031003

10041004
main "$@"

builds/cmake/install-presets.sh

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

10351035
msg_heading()
10361036
{
1037-
printf "\n********************** %s **********************\n" "$@"
1037+
printf "\n********************** %b **********************\n" "$@"
10381038
}
10391039

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

10471047
msg()
10481048
{
1049-
printf "%s\n" "$@"
1049+
printf "%b\n" "$@"
10501050
}
10511051

10521052
msg_success()
10531053
{
1054-
printf "${COLOR_GREEN}%s${COLOR_RESET}\n" "$@"
1054+
printf "${COLOR_GREEN}%b${COLOR_RESET}\n" "$@"
10551055
}
10561056

10571057
msg_warn()
10581058
{
1059-
printf "${COLOR_YELLOW}%s${COLOR_RESET}\n" "$@"
1059+
printf "${COLOR_YELLOW}%b${COLOR_RESET}\n" "$@"
10601060
}
10611061

10621062
msg_error()
10631063
{
1064-
>&2 printf "${COLOR_RED}%s${COLOR_RESET}\n" "$@"
1064+
>&2 printf "${COLOR_RED}%b${COLOR_RESET}\n" "$@"
10651065
}
10661066

10671067
main "$@"

builds/gnu/install-gnu.sh

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

964964
msg_heading()
965965
{
966-
printf "\n********************** %s **********************\n" "$@"
966+
printf "\n********************** %b **********************\n" "$@"
967967
}
968968

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

976976
msg()
977977
{
978-
printf "%s\n" "$@"
978+
printf "%b\n" "$@"
979979
}
980980

981981
msg_success()
982982
{
983-
printf "${COLOR_GREEN}%s${COLOR_RESET}\n" "$@"
983+
printf "${COLOR_GREEN}%b${COLOR_RESET}\n" "$@"
984984
}
985985

986986
msg_warn()
987987
{
988-
printf "${COLOR_YELLOW}%s${COLOR_RESET}\n" "$@"
988+
printf "${COLOR_YELLOW}%b${COLOR_RESET}\n" "$@"
989989
}
990990

991991
msg_error()
992992
{
993-
>&2 printf "${COLOR_RED}%s${COLOR_RESET}\n" "$@"
993+
>&2 printf "${COLOR_RED}%b${COLOR_RESET}\n" "$@"
994994
}
995995

996996
main "$@"

builds/msvc/build-msvc.cmd

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

0 commit comments

Comments
 (0)