1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 10:48:50 +10:00
Zorya-NEO/.buildactions/ff_clean.lua

11 lines
235 B
Lua
Raw Normal View History

2020-06-06 10:45:08 +10:00
function actions.clean()
print("Cleaning up...")
--os.execute("rm -rf .docs")
--os.execute("rm -rf .ktmp")
2020-06-17 15:22:48 +10:00
os.execute("mkdir -p pkg")
os.execute("rm -rf pkg/*")
os.execute("mkdir -p release")
os.execute("rm -rf release/*")
2020-06-06 10:45:08 +10:00
end