Sync to v7.2.0

This commit is contained in:
2024-06-06 22:06:52 +02:00
parent da6fe66887
commit e46d68b315
32 changed files with 111 additions and 69 deletions

View File

@ -0,0 +1,17 @@
local lfs = require"lfs"
local src = "../reference_scripts/"
local dst = "../scripts/"
for file in lfs.dir(src) do
if file == '.' or file == '..' then
else
local fp = io.open(dst..file, "r+")
if not fp then
print("File not found", dst..file)
os.execute("cp "..src..file.." "..dst..file)
else
fp:close()
end
end
end