We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ALIBABA_JAVA="/usr/alibaba/java/bin/java" TAOBAO_JAVA="/opt/taobao/java/bin/java" ... elif [ -f $ALIBABA_JAVA ] ; then JAVA=$TAOBAO_JAVA ... elif [ -f $TAOBAO_JAVA ] ; then JAVA=$TAOBAO_JAVA ...
The text was updated successfully, but these errors were encountered:
看到脚本问题了,应该是这样 ... elif [ -f $ALIBABA_JAVA ] ; then JAVA=$ALIBABA_JAVA ... elif [ -f $TAOBAO_JAVA ] ; then JAVA=$TAOBAO_JAVA ...
Sorry, something went wrong.
fixed issue #94 , script bugfix
1e3bc6a
agapple
No branches or pull requests
ALIBABA_JAVA="/usr/alibaba/java/bin/java"
TAOBAO_JAVA="/opt/taobao/java/bin/java"
...
elif [ -f $ALIBABA_JAVA ] ; then
JAVA=$TAOBAO_JAVA
...
elif [ -f $TAOBAO_JAVA ] ; then
JAVA=$TAOBAO_JAVA
...
The text was updated successfully, but these errors were encountered: