all repos — min @ f330b34e7f153234d8728ff2d952b91c14b6c500

A small but practical concatenative programming language.

Fixed file resolution when executing local min file.
h3rald h3rald@h3rald.com
Sun, 04 Feb 2024 10:59:59 +0100
commit

f330b34e7f153234d8728ff2d952b91c14b6c500

parent

fdab11ee8a1413ce4af81c938821583faa844553

1 files changed, 5 insertions(+), 1 deletions(-)

jump to
M min.nimmin.nim

@@ -316,7 +316,11 @@ if GLOBAL:

executeMmmCmd(proc () = MMM.list(MMM.globalDir)) else: executeMmmCmd(proc () = MMM.list(MMM.localDir)) - minFile fn, op + else: + logging.error "File not found: $#" % [file] + quit(1) + else: + minFile fn, op elif SIMPLEREPL: minSimpleRepl() quit(0)