Lines Matching refs:source
91 for source, system_path in additional_system_files:
92 shutil.copy(source, os.path.join(platform_installed_path, system_path))
102 source = module_info.get('source')
105 if not os.path.exists(source):
106 raise Exception("source '{}' doesn't exist.".format(source))
107 depfiles.append(source)
113 if os.path.isfile(source):
116 elif os.path.isdir(source):
120 if os.path.isdir(source):
122 for filename in os.listdir(source):
125 …shutil.copy2(os.path.join(source, filename), os.path.join(platform_installed_path, dest, filename))
127 … shutil.copytree(source, os.path.join(platform_installed_path, dest), dirs_exist_ok=True)
129 shutil.copy2(source, os.path.join(platform_installed_path, dest))