We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4da2e6e commit 75287d1Copy full SHA for 75287d1
release/downloadDubboCandidate.sh
@@ -85,11 +85,10 @@ if ! with_arch; then
85
fi
86
87
88
-printf "%s download complete!\n" "${filename}"
89
-
90
-# Print message.
+## Print message
+printf ""
+printf "\nDubbo %s download complete!\n" "$DUBBO_VERSION"
91
printf "\n"
92
-printf "Add the dubbo to your path with:\n"
93
-# shellcheck disable=SC2059
94
-printf " export PATH=$(pwd)/dubbo-${DUBBO_VERSION}/bin:$PATH \n"
95
-printf "\n"
+BINDIR="$(cd "$NAME/bin" && pwd)"
+printf "add the %s directory to your environment path variable with:\n" "$BINDIR"
+printf "\t export PATH=\"\$PATH:%s\"\n" "$BINDIR"
0 commit comments