# HG changeset patch # User Matthew Wild # Date 1278547872 -3600 # Node ID 16d59655c817bd82a53a9c8ccbb98dab17441471 # Parent 2fc48318b8bb85e18076ce977e133b1c075e9f8f make_squishy: Fix traceback on modules that couldn't be found on the filesystem (thanks Valerio) diff -r 2fc48318b8bb -r 16d59655c817 make_squishy --- a/make_squishy Sat May 29 21:44:23 2010 +0100 +++ b/make_squishy Thu Jul 08 01:11:12 2010 +0100 @@ -88,8 +88,7 @@ end if not filename then print_info("Couldn't resolve "..module.." (required in "..scanfile..")"); - end - if opts.recursion ~= false and not scanned_files[filename] then + elseif opts.recursion ~= false and not scanned_files[filename] then scanned_files[filename] = true; table.insert(files, filename); end