1
0
mirror of https://github.com/natnat-mc/moonbuild synced 2026-07-15 00:17:14 +02:00
This commit is contained in:
Codinget
2020-11-07 21:01:26 +01:00
parent ceada11b0b
commit c8670ab903
40 changed files with 1540 additions and 2230 deletions
+12
View File
@@ -0,0 +1,12 @@
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
}