Skip to content

Commit

Permalink
Uncomment actions in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcc0nn3ll committed May 6, 2024
1 parent 329e148 commit 80f601c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jetty-website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ function build_site() {
echo " - building site";
echo " - this may take up to 10 minutes";
echo " - Follow: tail -f $LOG_FILE";
#mvn antora &>>"$LOG_FILE";
#local mvn_status=$?;
mvn antora &>>"$LOG_FILE";

This comment has been minimized.

Copy link
@mojavelinux

mojavelinux May 13, 2024

Contributor

These needs to be:

./mvnw -B -e -V -ntp -Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss antora:antora@full

See the .github/workflows/publish-site.yml file for reference.

local mvn_status=$?;

#if [[ mvn_status -ne 0 ]]; then
# echo " - error building site";
# exit 1;
#fi
if [[ mvn_status -ne 0 ]]; then
echo " - error building site";
exit 1;
fi

if [[ ! -f "$$BUILT_SITE_DIR/index.html" ]]; then
echo " - successfully built website";
Expand Down

0 comments on commit 80f601c

Please sign in to comment.