aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2018-11-22 06:44:53 +0000
committers-ol <s-ol@users.noreply.github.com>2018-11-22 06:44:53 +0000
commitb944f9933fff5c0ca347ea5de0dd530c8bbee7dd (patch)
treef0dff14f4309b6ad6484ad2bac3544c86d4e42b3
parentfix browser nav buttons (diff)
downloadmmm-b944f9933fff5c0ca347ea5de0dd530c8bbee7dd.tar.gz
mmm-b944f9933fff5c0ca347ea5de0dd530c8bbee7dd.zip
fix $order error logs
-rw-r--r--bundle_fileder.moon4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle_fileder.moon b/bundle_fileder.moon
index c329a5b..7bccf53 100644
--- a/bundle_fileder.moon
+++ b/bundle_fileder.moon
@@ -114,13 +114,13 @@ with io.open '$bundle.lua', 'w'
if order
-- order from order file
for i, name in pairs order
- child = assert children[name], "child in $order but not fs: #{name} of #{path}"
+ child = assert children[name], "child in $order but not fs: #{name}"
table.insert .children, child
children[name] = nil
-- sort remainder alphabeticalally
for name, child in opairs children
table.insert .children, child
- warn "child #{name} of #{path} not in $order!" if order
+ warn "child #{name} not in $order!" if order
\close!