From 6a00c68264d1faad63cede24fba9af4c6eaa8696 Mon Sep 17 00:00:00 2001 From: Zhengguo Yang Date: Wed, 3 Mar 2021 14:46:54 +0800 Subject: [PATCH] Fix a typo ehco -> echo (#5433) --- bin/start_be.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/start_be.sh b/bin/start_be.sh index 50fe2bb0cb..0d9287d4de 100755 --- a/bin/start_be.sh +++ b/bin/start_be.sh @@ -32,7 +32,7 @@ while true; do case "$1" in --daemon) RUN_DAEMON=1 ; shift ;; --) shift ; break ;; - *) ehco "Internal error" ; exit 1 ;; + *) echo "Internal error" ; exit 1 ;; esac done