Skip to content

Commit

Permalink
Fixed over-zealous trim with -maxdepth 1
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Oct 30, 2024
1 parent 7633b72 commit ce59e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
java -jar jruby.jar -S gem install bundler -v 2.5.21 --install-dir ${GEM_HOME}
java -jar jruby.jar -S bundle install
find vendor/bundle/jruby/3.1.0/ -mindepth 1 -type d ! -name "gems" -exec rm -rf {} +
find vendor/bundle/jruby/3.1.0 -mindepth 1 -maxdepth 1 -type d ! -name "gems" -exec rm -rf {} +
zip -r ruby_ast_gen_${{ steps.taggerDryRun.outputs.new_tag }}.zip \
lib exe sig vendor README.md LICENSE.txt Rakefile Gemfile ruby_ast_gen.gemspec
Expand Down

0 comments on commit ce59e96

Please sign in to comment.