diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-07-09 17:00:41 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-07-09 17:00:57 -0700 |
| commit | cb1c3106f8d6517bb80d1deed6d21cb4f0a10bec (patch) | |
| tree | d5b9db8f4323c2aea321cf8c0638c4ae7664410d | |
| parent | 11e9e3663663a45446911372fe52fc8bee2f238d (diff) | |
Made command line args into a proper Nomsu list.
| -rw-r--r-- | nomsu.lua | 2 | ||||
| -rwxr-xr-x | nomsu.moon | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -114,7 +114,7 @@ if not args or args.help then end local files = require("files") local nomsu = NomsuCompiler -nomsu.arg = args.nomsu_args +nomsu.arg = NomsuCompiler.list(args.nomsu_args) if args.version then nomsu:run([[use "core" say (Nomsu version)]]) @@ -66,7 +66,7 @@ if not args or args.help files = require "files" nomsu = NomsuCompiler -nomsu.arg = args.nomsu_args +nomsu.arg = NomsuCompiler.list(args.nomsu_args) if args.version nomsu\run [[ |
