File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11---------------------------------------------------------------------------------------------------
22Version: 0.1.5
3+ Bugfixes:
4+ - Fix error when the optional '--ignore' argument was not specified
35---------------------------------------------------------------------------------------------------
46Version: 0.1.4
57Date: 2023-02-10
Original file line number Diff line number Diff line change @@ -267,8 +267,10 @@ if output_dir ~= source_dir then
267267 ignore_path_lut [output_dir :str ()] = true
268268end
269269
270- for _ , ignore_path in ipairs (args .ignore_paths ) do
271- ignore_path_lut [ignore_path :to_fully_qualified (source_dir ):normalize ():str ()] = true
270+ if args .ignore_paths then
271+ for _ , ignore_path in ipairs (args .ignore_paths ) do
272+ ignore_path_lut [ignore_path :to_fully_qualified (source_dir ):normalize ():str ()] = true
273+ end
272274end
273275
274276local function warn_for_unhandled_entry (mode , entry_path )
You can’t perform that action at this time.
0 commit comments