8 lines
103 B
Lua
8 lines
103 B
Lua
|
|
require "resources.functions.mkdir"
|
||
|
|
|
||
|
|
local path = argv[1]
|
||
|
|
|
||
|
|
if path and #path > 0 then
|
||
|
|
mkdir(path)
|
||
|
|
end
|