gpt4 book ai didi

windows - 批处理脚本错误 "The syntax of the command is incorrect"

转载 作者:可可西里 更新时间:2023-11-01 11:46:19 40 4
gpt4 key购买 nike

我有一个批处理文件在特定行抛出语法错误。

@ECHO ON
CD %~dp0
SET XDA_HOME_DIR=%CD:~0,-4%
SET "JAVAHOME=%JAVA_HOME%"
SET XDA_CONFIG_PROPERTIES=%XDA_HOME_DIR%\config\xda-config.properties
IF "%JAVAHOME%"== ""(
ECHO JAVA_HOME not set
GOTO END)

注意:这不是完整的脚本。我只发布了其中的一部分。

下面是抛出的错误: enter image description here

是什么导致了语法错误消息?

最佳答案

错误来自这里:

IF "%JAVAHOME%"== ""( 
ECHO JAVA_HOME not set
GOTO END)

左括号前需要一个空格:

IF "%JAVAHOME%" == "" ( 
ECHO JAVA_HOME not set
GOTO END
)

关于windows - 批处理脚本错误 "The syntax of the command is incorrect",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43866578/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com