Skip to content

Commit

Permalink
Exclude builders/ directory from gem package
Browse files Browse the repository at this point in the history
`rake native gem` somehow fails due to symlinks under builders/ directory.
  • Loading branch information
kateinoigakukun committed Mar 28, 2024
1 parent 44acba1 commit abf6ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby_wasm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) ||
f.match(%r{\Apackages/})
f.match(%r{\A(?:packages|builders)/})
end
end
spec.bindir = "exe"
Expand Down

0 comments on commit abf6ef4

Please sign in to comment.