We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7273c9e + ce79631 commit e11edeaCopy full SHA for e11edea
src/commands/sbt_cached.yml
@@ -149,7 +149,7 @@ steps:
149
find $HOME/.sbt -name "*.lock" | xargs rm | true
150
find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm | true
151
# delete all jars inside target directories
152
- find . -name *.jar -type f -exec rm {} \;
+ find . -type f -name *.jar ! -name *-assembly.jar -exec rm {} \;
153
# zip all targets to a single file
154
find . -name target -type d -prune -print | zip -r -q -1 -@ ~/targets.zip
155
0 commit comments