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.
1 parent ee89e0e commit 7150f12Copy full SHA for 7150f12
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