You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2022/07/07 15:37:43 UTC

[GitHub] [doris] adonis0147 commented on a diff in pull request #10689: fix stop_be.sh introduced by bff561c

adonis0147 commented on code in PR #10689:
URL: https://github.com/apache/doris/pull/10689#discussion_r916018415


##########
bin/stop_be.sh:
##########
@@ -23,7 +23,7 @@ export DORIS_HOME=`cd "$curdir/.."; pwd`
 export PID_DIR=`cd "$curdir"; pwd`
 
 signum=9
-if [ $1 = "--grace" ]; then
+if [ "x"$1 = "x--grace" ]; then

Review Comment:
   ```suggestion
   if [[ "$1" == "--grace" ]]; then
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org