We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8649f85 commit c6d1bfaCopy full SHA for c6d1bfa
luasrc/patch.lua
@@ -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
12
private_vibescript.configure_patch = function ()
13
function ApplyPatch(patch)
14
@@ -30,5 +41,12 @@ private_vibescript.configure_patch = function ()
30
41
local git_pull_command = "cd "..patch_folder.." && git pull"
31
42
os.execute(git_pull_command)
32
43
44
+ local itens_to_copy = dtw.list_files_recursively(patch_folder.."/"..patch.src)
45
46
+ local internal_excudes = {
47
+ ".git/*"
48
+ }
49
50
33
51
end
34
52
0 commit comments