Skip to content

Commit dda68ca

Browse files
att
1 parent 113c6a9 commit dda68ca

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

luasrc/patch.lua

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ private_vibescript.configure_patch = function ()
6666
local git_pull_command = "cd "..patch_folder.." && git pull"
6767
os.execute(git_pull_command)
6868

69-
local itens_to_copy = dtw.list_files_recursively(patch_folder.."/"..patch.src)
69+
local repo_src = patch_folder.."/"..patch.src
70+
local itens_to_copy = dtw.list_files_recursively(repo_src)
7071

7172
local internal_excudes = {
7273
".git/*"
@@ -77,7 +78,9 @@ private_vibescript.configure_patch = function ()
7778
end
7879
for i=1,#filtered_itens do
7980
local item = filtered_itens[i]
80-
print("Applying patch item: "..item)
81+
local item_path = repo_src.."/"..item
82+
local dest_path = patch.dest.."/"..item
83+
print("Applying patch item: "..item," to dest: "..dest_path)
8184
end
8285

8386

0 commit comments

Comments
 (0)