This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch issue_3335 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit f400e0d8b6c7a76a3fde892151b2ee480f264880 Author: Irvine <[email protected]> AuthorDate: Fri Jun 4 15:10:56 2021 +0800 [ISSUE-3335] Fix the bug of start-cli.sh -e mode can't work with wildcard * (#3336) Co-authored-by: wangjunqing <[email protected]> --- cli/src/assembly/resources/sbin/start-cli.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/assembly/resources/sbin/start-cli.sh b/cli/src/assembly/resources/sbin/start-cli.sh index ac96496..4a736e9 100644 --- a/cli/src/assembly/resources/sbin/start-cli.sh +++ b/cli/src/assembly/resources/sbin/start-cli.sh @@ -75,6 +75,7 @@ esac # echo $PARAMETERS +set -o noglob exec "$JAVA" -cp "$CLASSPATH" "$MAIN_CLASS" $PARAMETERS
