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

Commit 58ae599

Browse files
committed
fix duplicated target in results path
1 parent ff3aa93 commit 58ae599

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/package/scripts/build-sbt.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ else
6565
fi
6666

6767
echo "Verifying unit test coverage report was generated ..."
68-
COVERAGE_RESULT_DIR="${BUILD_DIR}/target/scala-2.13"
68+
COVERAGE_RESULT_DIR="${BUILD_DIR}/scala-2.13"
6969
if [ -d "${COVERAGE_RESULT_DIR}" ]; then
7070
CODE_COVERAGE_ARTIFACTS_DIR="${ARTIFACTS_DIR}/code-coverage"
7171
mkdir -p "${CODE_COVERAGE_ARTIFACTS_DIR}"
@@ -78,7 +78,7 @@ fi
7878
# create a clean binary as the previous compiled sources where instrumented for the coverage report
7979
sbt -no-colors -v clean stage
8080

81-
STAGING_DIR="${BUILD_DIR}/target/universal/stage"
81+
STAGING_DIR="${BUILD_DIR}/universal/stage"
8282
echo "Copying contents of ${STAGING_DIR} to ${OUTPUT_DIR}/dist ..."
8383
cp -r "${STAGING_DIR}/." "${OUTPUT_DIR}/dist"
8484

0 commit comments

Comments
 (0)