File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments