From dd795dc314c9d17f7f5ea8933a66468fccd96996 Mon Sep 17 00:00:00 2001 From: Dario Halilovic Date: Fri, 13 Sep 2024 18:09:42 +0200 Subject: [PATCH] Show logs during jar assembly phase --- bin/package-standalone.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/package-standalone.sh b/bin/package-standalone.sh index ec011203c..f4dfa0c11 100755 --- a/bin/package-standalone.sh +++ b/bin/package-standalone.sh @@ -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