Lines Matching refs:install_dir
46 def remove_old_snapshot(install_dir): argument
47 logging.info('Removing any old files in {}'.format(install_dir))
48 for file in glob.glob('{}/*'.format(install_dir)):
59 def install_snapshot(branch, build, local_dir, install_dir, temp_artifact_dir): argument
88 os.chdir(install_dir)
96 utils.check_call(['unzip', '-qn', artifact, '-d', install_dir])
99 def gather_notice_files(install_dir): argument
106 for arch in utils.get_snapshot_archs(install_dir):
241 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version))
242 if not os.path.isdir(install_dir):
250 os.chdir(install_dir)
255 remove_old_snapshot(install_dir)
263 install_snapshot(args.branch, args.build, local, install_dir,
265 gather_notice_files(install_dir)
268 buildfile_generator = GenBuildFile(install_dir, vndk_version)
272 license_checker = GPLChecker(install_dir, ANDROID_BUILD_TOP,