Skip to content

Commit e10aeaf

Browse files
Fix patch command invocation
It has been broken since e5fa660 :(
1 parent 9b798e4 commit e10aeaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ruby_wasm/build/product/ruby_source.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def fetch(executor)
8080
raise "unknown source type: #{@params[:type]}"
8181
end
8282
(@params[:patches] || []).each do |patch_path|
83-
executor.system "patch", "-p1", patch_path, chdir: src_dir
83+
executor.system "patch", "-p1", "-i", patch_path, chdir: src_dir
8484
end
8585
end
8686

0 commit comments

Comments
 (0)