Skip to content

Commit

Permalink
revert name change on jar file
Browse files Browse the repository at this point in the history
  • Loading branch information
hjrocha committed Jul 19, 2024
1 parent f949f58 commit a54b29e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
at: ~/workdir
- run: |
mkdir -p ~/workdir/artifacts/
mv ~/workdir/tmp-artifacts/codacy-coverage-reporter-assembly.jarvenstarde ~/workdir/artifacts/codacy-coverage-reporter-assembly.jar
mv ~/workdir/tmp-artifacts/codacy-coverage-reporter-assembly.jar ~/workdir/artifacts/codacy-coverage-reporter-assembly.jar
upx --lzma -o ~/workdir/artifacts/codacy-coverage-reporter-linux ~/workdir/tmp-artifacts/codacy-coverage-reporter-linux
# upx binaries don't work on Mac OS Big Sur https://github.com/upx/upx/issues/424
# use upx again once the bug is fixed
Expand Down Expand Up @@ -250,7 +250,7 @@ workflows:
sbt "assembly;nativeImage"
mkdir -p ~/workdir/tmp-artifacts
mv target/native-image/codacy-coverage-reporter ~/workdir/tmp-artifacts/codacy-coverage-reporter-linux
mv target/codacy-coverage-reporter-assembly-$(cat .version).jar ~/workdir/tmp-artifacts/codacy-coverage-reporter-assembly.jarvenstarde
mv target/codacy-coverage-reporter-assembly-$(cat .version).jar ~/workdir/tmp-artifacts/codacy-coverage-reporter-assembly.jar
persist_to_workspace: true
save_cache: true
requires:
Expand Down
1 change: 0 additions & 1 deletion get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ checksum() {
elif [ "$major_version" -ge 13 ]; then
log "$i" "Checking checksum..."
download_file "$checksum_url"

if command -v sha512sum > /dev/null 2>&1; then
sha_check_command="sha512sum"
elif command -v shasum > /dev/null 2>&1; then
Expand Down

0 comments on commit a54b29e

Please sign in to comment.