Skip to content

Commit c6d1bfa

Browse files
att
1 parent 8649f85 commit c6d1bfa

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

luasrc/patch.lua

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2+
private_vibescript.remove_itens_of_list = function (itens,itens_to_exclude)
3+
local filtered_itens = {}
4+
for i=1,#itens do
5+
local item = itens[i]
6+
local exclude_item = false
7+
8+
9+
end
10+
end
11+
112
private_vibescript.configure_patch = function ()
213
function ApplyPatch(patch)
314

@@ -30,5 +41,12 @@ private_vibescript.configure_patch = function ()
3041
local git_pull_command = "cd "..patch_folder.." && git pull"
3142
os.execute(git_pull_command)
3243

44+
local itens_to_copy = dtw.list_files_recursively(patch_folder.."/"..patch.src)
45+
46+
local internal_excudes = {
47+
".git/*"
48+
}
49+
50+
3351
end
3452
end

0 commit comments

Comments
 (0)