We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where is the source code of the install.lua ?
I would like to add functionality to
if not fs.isDir(tArgs[1]) then fs.makeDir(tArgs[1]) end for _,dir in ipairs(dirs) do local fpath = root .. dir print("dir " .. fpath) if not fs.isDir(fpath) then fs.makeDir(fpath) end end i = 1 while i<#files do sleep(0.05) local fpath = root .. files[i] local data = files[i+1] print("file " .. fpath) local file = fs.open(fpath, "w") file.write(data) file.close() i = i+2 end
Please provide information about building the installer in README.md and maybe provide the build tool in this repository.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Where is the source code of the install.lua ?
I would like to add functionality to
Please provide information about building the installer in README.md and maybe provide the build tool in this repository.
The text was updated successfully, but these errors were encountered: