We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6017f2f + 7150f12 commit caa4c16Copy full SHA for caa4c16
spring-boot-project/spring-boot-cli/src/main/executablecontent/bin/spring
@@ -87,10 +87,10 @@ if [ -z "${SPRING_HOME}" ]; then
87
fi
88
done
89
SAVED="$(pwd)"
90
- cd "$(dirname "${PRG}")/../" >&- || exit 1
+ cd "$(dirname "${PRG}")/../" > /dev/null || exit 1
91
SPRING_HOME="$(pwd -P)"
92
export SPRING_HOME
93
- cd "$SAVED" >&- || exit 1
+ cd "$SAVED" > /dev/null || exit 1
94
95
96
if [ ! -d "${SPRING_HOME}" ]; then
0 commit comments