mirror of
https://github.com/natnat-mc/moonbuild
synced 2026-05-28 09:39:40 +02:00
13 lines
213 B
MoonScript
13 lines
213 B
MoonScript
import dir, attributes, mkdir from require 'lfs'
|
|
|
|
{
|
|
dir: (path) ->
|
|
[v for v in dir path]
|
|
|
|
attributes: attributes
|
|
|
|
mkdir: (path) ->
|
|
ok, err = mkdir path
|
|
error "Failed to mkdir #{path}: #{err}" unless ok
|
|
}
|