Skip to content

Commit 5e0363b

Browse files
committed
Minor code cleanup
1 parent 9b4c2a9 commit 5e0363b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ run-all-tests: $(call print-help,run-all-tests,"Run all test against each flavou
1818
setup-mvn-creds: $(call print-help,setup-mvn-creds,"Setup credentials for maven/clojars")
1919
@./scripts/dev-setup.sh
2020

21-
uberjar: $(call print-help,uberjar,"Create uberjar for use in by DB migration pipeline")
21+
uberjar: $(call print-help,uberjar,"Create uberjar for use in DB migration pipeline")
2222
@./scripts/bundle-release.sh
2323

2424
.PHONY: uberjar-for-db-mig deploy-clojars setup-mvn-creds

scripts/bundle-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ mkdir -p "${BUILD_DIR}/${PROJ_FQNAME}"
8181
mkdir -p "${RELEASE_DIR}"
8282
release_file "${RELEASE_TAG}" "${LOG_SORT_SCRIPT}" "${BUILD_DIR}/${PROJ_FQNAME}/$(basename ${LOG_SORT_SCRIPT})"
8383
make_release_jar "${PWD}" "${JAR_NAME}"
84-
mv "$(find ./target -name ${PROJ_NAME}-${RELEASE_TAG}-standalone.jar)" "${DEPLOY_JAR}"
84+
mv "$(find ./target -name ${JAR_NAME})" "${DEPLOY_JAR}"
8585
cd "${BUILD_DIR}"
8686
run_step "Creating release archive: ${RELEASE_ARCHIVE}" \
8787
tar cpJf "${RELEASE_ARCHIVE}" "${PROJ_FQNAME}"

0 commit comments

Comments
 (0)