From 234eaca0d2bbe3d893f3b4f410ee3f2bfdb27e09 Mon Sep 17 00:00:00 2001 From: leo65535 Date: Fri, 15 Apr 2022 13:43:47 +0800 Subject: [PATCH] [Fix Bug] Fix ehco command not found (#9021) --- bin/start_fe.sh | 2 +- build_plugin.sh | 2 +- contrib/udf/build_udf.sh | 2 +- fs_brokers/apache_hdfs_broker/bin/start_broker.sh | 2 +- run-fe-ut.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/start_fe.sh b/bin/start_fe.sh index fa0ece4ac8f537..b9f1df0b8e6ad6 100755 --- a/bin/start_fe.sh +++ b/bin/start_fe.sh @@ -48,7 +48,7 @@ while true; do break ;; *) - ehco "Internal error" + echo "Internal error" exit 1 ;; esac diff --git a/build_plugin.sh b/build_plugin.sh index c8b35edfffeb6a..d3f20ea23ace6b 100755 --- a/build_plugin.sh +++ b/build_plugin.sh @@ -67,7 +67,7 @@ else -h) HELP=1; shift ;; --help) HELP=1; shift ;; --) shift ; break ;; - *) ehco "Internal error" ; exit 1 ;; + *) echo "Internal error" ; exit 1 ;; esac done fi diff --git a/contrib/udf/build_udf.sh b/contrib/udf/build_udf.sh index 1fce8935c8de76..c73d45041c64fa 100644 --- a/contrib/udf/build_udf.sh +++ b/contrib/udf/build_udf.sh @@ -79,7 +79,7 @@ else -h) HELP=1; shift ;; --help) HELP=1; shift ;; --) shift ; break ;; - *) ehco "Internal error" ; exit 1 ;; + *) echo "Internal error" ; exit 1 ;; esac done fi diff --git a/fs_brokers/apache_hdfs_broker/bin/start_broker.sh b/fs_brokers/apache_hdfs_broker/bin/start_broker.sh index 6fc6fb97d797d6..6318a32fa0978d 100755 --- a/fs_brokers/apache_hdfs_broker/bin/start_broker.sh +++ b/fs_brokers/apache_hdfs_broker/bin/start_broker.sh @@ -42,7 +42,7 @@ while true; do break ;; *) - ehco "Internal error" + echo "Internal error" exit 1 ;; esac diff --git a/run-fe-ut.sh b/run-fe-ut.sh index eb603a4bda5c15..dd1062d6e1e6a9 100755 --- a/run-fe-ut.sh +++ b/run-fe-ut.sh @@ -68,7 +68,7 @@ else --coverage) COVERAGE=1 ; shift ;; --run) RUN=1 ; shift ;; --) shift ; break ;; - *) ehco "Internal error" ; exit 1 ;; + *) echo "Internal error" ; exit 1 ;; esac done fi