You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix the " or exit " and output redirection on error (#70)
issue NMO-459
- best practice: `<command> || exit` need to change to `<command> ||
exit 1` so that it return an error on logic faillure
- best practice: output redirection need to be from stdout to stder on
error
if [[ "$(basename "$(pwd)")"!="function_library" ]];then
14
-
echo -e "\n[\033[1;31mERROR\033[0m] 'docker_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
14
+
echo -e "\n[\033[1;31mERROR\033[0m] 'docker_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"1>&2
if [[ "$(basename "$(pwd)")"!="function_library" ]];then
14
-
echo -e "\n[\033[1;31mERROR\033[0m] 'general_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
14
+
echo -e "\n[\033[1;31mERROR\033[0m] 'general_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"1>&2
15
15
echo'(press any key to exit)'
16
16
read -r -n 1
17
17
exit 1
@@ -100,7 +100,7 @@ function n2st::set_which_architecture_and_os() {
100
100
elif [[ $(uname)=="Linux" ]];then
101
101
export IMAGE_ARCH_AND_OS='linux/arm64'
102
102
else
103
-
echo -e "${MSG_ERROR} Unsupported OS for aarch64 processor"
103
+
echo -e "${MSG_ERROR} Unsupported OS for aarch64 processor"1>&2
if [[ "$(basename "$(pwd)")"!="function_library" ]];then
15
-
echo -e "\n[\033[1;31mERROR\033[0m] 'prompt_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
15
+
echo -e "\n[\033[1;31mERROR\033[0m] 'prompt_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"1>&2
16
16
echo'(press any key to exit)'
17
17
read -rn 1
18
18
exit 1
@@ -98,7 +98,7 @@ function n2st::print_msg_error_and_exit() {
98
98
local ERROR_MSG=$1
99
99
100
100
echo""
101
-
echo -e "${MSG_ERROR}: ${ERROR_MSG}">&2
101
+
echo -e "${MSG_ERROR}: ${ERROR_MSG}"1>&2
102
102
# Note: The >&2 sends the echo output to standard error
103
103
echo"Exiting now."
104
104
echo""
@@ -109,7 +109,7 @@ function n2st::print_msg_error() {
if [[ "$(basename "$(pwd)")"!="function_library" ]];then
15
-
echo -e "\n[\033[1;31mERROR\033[0m] 'teamcity_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
15
+
echo -e "\n[\033[1;31mERROR\033[0m] 'teamcity_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"1>&2
if [[ "$(basename "$(pwd)")"!="utility_scripts" ]];then
16
-
echo -e "\n[\033[1;31mERROR\033[0m] 'install_docker_tools.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"
16
+
echo -e "\n[\033[1;31mERROR\033[0m] 'install_docker_tools.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"1>&2
if [[ "$(basename "$(pwd)")"!="utility_scripts" ]];then
29
-
echo -e "\n[\033[1;31mERROR\033[0m] 'which_architecture_and_os.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"
29
+
echo -e "\n[\033[1;31mERROR\033[0m] 'which_architecture_and_os.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"1>&2
30
30
echo'(press any key to exit)'
31
31
read -r -n 1
32
32
exit 1
@@ -42,7 +42,7 @@ if [[ -z $PROJECT_PROMPT_NAME ]] && [[ -z $PROJECT_GIT_NAME ]] ; then
if [[ "$(basename "$(pwd)")"!="utility_scripts" ]];then
20
-
echo -e "\n[\033[1;31mERROR\033[0m] 'which_python_version.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"
20
+
echo -e "\n[\033[1;31mERROR\033[0m] 'which_python_version.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"1>&2
21
21
echo'(press any key to exit)'
22
22
read -r -n 1
23
23
exit 1
@@ -33,7 +33,7 @@ if [[ -z $PROJECT_PROMPT_NAME ]] && [[ -z $PROJECT_GIT_NAME ]] ; then
0 commit comments