lib/pkgforge/components/patch.rb in pkgforge-0.23.0 vs lib/pkgforge/components/patch.rb in pkgforge-0.23.1
- old
+ new
@@ -9,10 +9,10 @@
@patches ||= []
end
Contract String => nil
def run_patch(file)
- run_local "patch -d #{tmpdir(:build)} -p1 < patches/#{file}"
+ run "patch -d #{tmpdir(:build)} -p1 < patches/#{file}"
end
private
Contract None => nil