Lines Matching refs:install_dir
56 def remove_old_snapshot(install_dir): argument
57 logger().info('Removing any old files in {}'.format(install_dir))
58 for file in glob.glob('{}/*'.format(install_dir)):
69 def install_snapshot(branch, build, install_dir, temp_artifact_dir): argument
97 os.chdir(install_dir)
110 check_call(['unzip', '-q', artifact, '-d', install_dir])
113 def gather_notice_files(install_dir): argument
119 for variant in utils.get_snapshot_variants(install_dir):
221 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version))
222 if not os.path.isdir(install_dir):
232 os.chdir(install_dir)
237 remove_old_snapshot(install_dir)
246 install_snapshot(args.branch, args.build, install_dir,
248 gather_notice_files(install_dir)
251 buildfile_generator = GenBuildFile(install_dir, vndk_version)
255 license_checker = GPLChecker(install_dir, ANDROID_BUILD_TOP,