MCPcopy Create free account
hub / github.com/defold/defold / find_files

Function find_files

editor/scripts/bundle.py:645–652  ·  view source on GitHub ↗
(root_dir, file_pattern)

Source from the content-addressed store, hash-verified

643 sign_file(platform, options, os.path.join(bundle_dir, "Defold.exe"))
644
645def find_files(root_dir, file_pattern):
646 matches = []
647 for root, dirnames, filenames in os.walk(root_dir):
648 for filename in filenames:
649 fullname = os.path.join(root, filename)
650 if fnmatch.fnmatch(filename, file_pattern):
651 matches.append(fullname)
652 return matches
653
654def create_dmg(bundle_dir, options, platform):
655 # setup

Callers 1

signFunction · 0.85

Calls 2

appendMethod · 0.80
walkMethod · 0.65

Tested by

no test coverage detected