Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 4377909

Browse files
author
Corneil du Plessis
authored
Fix build-docs.sh error
Updates build-docs.sh path usage to execute in project root.
1 parent f09223a commit 4377909

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/scripts/build-docs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ -z "$BASH_VERSION" ]; then
44
exit 1
55
fi
66
SCDIR=$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")
7-
SCDIR=$(realpath $SCDIR)
8-
pushd "$SCDIR" > /dev/null || exit
9-
./mvnw install -DskipTests -am -pl :spring-cloud-dataflow-classic-docs,:spring-cloud-dataflow-docs,:spring-cloud-skipper-server-core,:spring-cloud-skipper-docs -Pfull,docs
7+
SCDIR=$(realpath "$SCDIR/../..")
8+
pushd "$SCDIR" || exit
9+
./mvnw install -DskipTests -Pdocs -B --no-transfer-progress -pl :spring-cloud-skipper-server-core,:spring-cloud-skipper,:spring-cloud-skipper-docs,:spring-cloud-dataflow-classic-docs,:spring-cloud-dataflow-docs -T 1C
1010
popd > /dev/null || exit

0 commit comments

Comments
 (0)