From f434b6b167477971f1df54ffc71b031e13705a75 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 26 Jul 2018 14:29:23 -0700 Subject: [PATCH] Fix for -e strings not getting executed because Files.walk didn't respect spoofing. --- files.lua | 2 +- files.moon | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files.lua b/files.lua index 72d9a43..eaea883 100644 --- a/files.lua +++ b/files.lua @@ -177,7 +177,7 @@ Files.walk = function(path, flush_cache) _BROWSE_CACHE = { } end local files - if path == 'stdin' then + if path == 'stdin' or _SPOOFED_FILES[path] then files = { path } diff --git a/files.moon b/files.moon index 04bebdb..dc3a8bd 100644 --- a/files.moon +++ b/files.moon @@ -103,7 +103,7 @@ Files.walk = (path, flush_cache=false)-> export _BROWSE_CACHE _BROWSE_CACHE = {} local files - if path == 'stdin' + if path == 'stdin' or _SPOOFED_FILES[path] files = {path} else for nomsupath in package.nomsupath\gmatch("[^;]+")