Skip to content

Commit

Permalink
Show logs during jar assembly phase
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalilov committed Sep 13, 2024
1 parent 661b5a5 commit c86f3bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/package-standalone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ info "$(tput bold)[] Assembling fat jar..."
if [[ -f "$STAINLESS_DOTTY_JAR_PATH" && -f "$STAINLESS_LIB_BIN_JAR_PATH" && -f "$STAINLESS_LIB_SRC_JAR_PATH" ]]; then
info " (JAR already exists, skipping sbt assembly step.)" && okay
else
$SBT_PACKAGE_DOTTY >> $LOG || fail
$SBT_PACKAGE_LIB >> $LOG && okay || fail
$SBT_PACKAGE_DOTTY | tee -a $LOG || fail
($SBT_PACKAGE_LIB | tee -a $LOG) && okay || fail
fi

prepare_output_dir
Expand Down

0 comments on commit c86f3bf

Please sign in to comment.