Skip to content

Commit d6464a6

Browse files
att
1 parent dda68ca commit d6464a6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

luasrc/patch.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ private_vibescript.remove_itens_of_list = function (itens,itens_to_exclude)
2323
for j=1,#itens_to_exclude do
2424
local possible_exclusion = itens_to_exclude[j]
2525
if(private_vibescript.match_pattern(item,possible_exclusion)) then
26-
print("Excluding item: "..item.." by pattern: "..possible_exclusion)
26+
--("Excluding item: "..item.." by pattern: "..possible_exclusion)
2727
exclude_item = true
2828
break
2929
end
@@ -80,7 +80,8 @@ private_vibescript.configure_patch = function ()
8080
local item = filtered_itens[i]
8181
local item_path = repo_src.."/"..item
8282
local dest_path = patch.dest.."/"..item
83-
print("Applying patch item: "..item," to dest: "..dest_path)
83+
-- print("Applying patch item: "..item," to dest: "..dest_path)
84+
dtw.copy_any_overwriting(item_path,dest_path)
8485
end
8586

8687

0 commit comments

Comments
 (0)