diff --git a/CHANGES.md b/CHANGES.md index a29c827d305..68792301eea 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,9 @@ Release Notes. Apollo 1.10.0 ------------------ + * [Bump version to 1.10.0](https://github.com/ctripcorp/apollo/pull/3917) +* [Fix issue that the $ symbol is not used when reading shell variables](https://github.com/ctripcorp/apollo/pull/3890) ------------------ All issues and pull requests are [here](https://github.com/ctripcorp/apollo/milestone/8?closed=1) diff --git a/apollo-adminservice/src/main/scripts/startup.sh b/apollo-adminservice/src/main/scripts/startup.sh index 85146c4c42a..20c40374ee1 100644 --- a/apollo-adminservice/src/main/scripts/startup.sh +++ b/apollo-adminservice/src/main/scripts/startup.sh @@ -120,7 +120,7 @@ do fi done -if [[ ! -f PATH_TO_JAR && -d current ]]; then +if [[ ! -f $PATH_TO_JAR && -d current ]]; then cd current for i in `ls $SERVICE_NAME-*.jar 2>/dev/null` do diff --git a/apollo-configservice/src/main/scripts/startup.sh b/apollo-configservice/src/main/scripts/startup.sh index 26854fd593d..46f3eb2b7f6 100644 --- a/apollo-configservice/src/main/scripts/startup.sh +++ b/apollo-configservice/src/main/scripts/startup.sh @@ -120,7 +120,7 @@ do fi done -if [[ ! -f PATH_TO_JAR && -d current ]]; then +if [[ ! -f $PATH_TO_JAR && -d current ]]; then cd current for i in `ls $SERVICE_NAME-*.jar 2>/dev/null` do diff --git a/apollo-portal/src/main/scripts/startup.sh b/apollo-portal/src/main/scripts/startup.sh index 2534bb8ca73..af04f2afd5b 100755 --- a/apollo-portal/src/main/scripts/startup.sh +++ b/apollo-portal/src/main/scripts/startup.sh @@ -120,7 +120,7 @@ do fi done -if [[ ! -f PATH_TO_JAR && -d current ]]; then +if [[ ! -f $PATH_TO_JAR && -d current ]]; then cd current for i in `ls $SERVICE_NAME-*.jar 2>/dev/null` do