diff options
Diffstat (limited to 'headers.lua')
-rwxr-xr-x | headers.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/headers.lua b/headers.lua index 680142d..290aca3 100755 --- a/headers.lua +++ b/headers.lua @@ -1,8 +1,8 @@ #!/usr/bin/env lua local args = require "pl.lapp" [[ Prints list of headers from a standard or available standards - -d (string default 'db/') Directory where definitions are placed - <selection> (optional string) Standard to display headers for + -d (string default 'db/') Directory where definitions are placed + <selection...> (optional string) Standard to display the headers for ]] local dir = require "pl.dir" local parser = require "headers.parser".new() @@ -13,7 +13,7 @@ for _, filename in pairs(definitions) do handle:close() parser:parse(data) end -if args.selection then +if #args.selection > 0 then local headers = parser:get_headers(args.selection) if not headers then os.exit(1) |