delete all duplicate empty blanks

Signed-off-by: Xiang Dai <764524258@qq.com>
This commit is contained in:
Xiang Dai
2019-02-22 09:43:51 +08:00
parent b77e4e2417
commit 36065c6dd7
135 changed files with 283 additions and 283 deletions

View File

@@ -28,7 +28,7 @@ kube::log::errexit() {
set +o xtrace
local code="${1:-1}"
# Print out the stack trace described by $function_stack
# Print out the stack trace described by $function_stack
if [ ${#FUNCNAME[@]} -gt 2 ]
then
kube::log::error "Call tree:"
@@ -36,7 +36,7 @@ kube::log::errexit() {
do
kube::log::error " ${i}: ${BASH_SOURCE[${i}+1]}:${BASH_LINENO[${i}]} ${FUNCNAME[${i}]}(...)"
done
fi
fi
kube::log::error_exit "Error in ${BASH_SOURCE[1]}:${BASH_LINENO[0]}. '${BASH_COMMAND}' exited with status ${err}" "${1:-1}" 1
}