(root_dir, file_pattern)
| 643 | sign_file(platform, options, os.path.join(bundle_dir, "Defold.exe")) |
| 644 | |
| 645 | def 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 | |
| 654 | def create_dmg(bundle_dir, options, platform): |
| 655 | # setup |