Skip to content

Commit

Permalink
Merge pull request #228 from codacy/fix-rm-jar-on-target
Browse files Browse the repository at this point in the history
Remove the rm .jar because it's removing necessary binaries
  • Loading branch information
hjrocha authored Jul 23, 2024
2 parents 7273c9e + ce79631 commit e11edea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/sbt_cached.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ steps:
find $HOME/.sbt -name "*.lock" | xargs rm | true
find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm | true
# delete all jars inside target directories
find . -name *.jar -type f -exec rm {} \;
find . -type f -name *.jar ! -name *-assembly.jar -exec rm {} \;
# zip all targets to a single file
find . -name target -type d -prune -print | zip -r -q -1 -@ ~/targets.zip
Expand Down

0 comments on commit e11edea

Please sign in to comment.