Fix a typo ehco -> echo (#5433)

This commit is contained in:
Zhengguo Yang
2021-03-03 14:46:54 +08:00
committed by GitHub
parent e93a6da0e5
commit 6a00c68264

View File

@ -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