You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
936 B
41 lines
936 B
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2017 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
"""Create the asset."""
|
|
|
|
import common # fixes python import path
|
|
import argparse
|
|
import subprocess
|
|
import sys
|
|
import utils
|
|
|
|
|
|
URL = 'https://github.com/bazelbuild/bazel/releases/download/4.0.0/bazel-4.0.0-installer-linux-x86_64.sh'
|
|
INSTALLER_SCRIPT = URL.split('/')[-1]
|
|
|
|
|
|
def create_asset(target_dir):
|
|
"""Create the asset."""
|
|
with utils.tmp_dir():
|
|
subprocess.call(['wget', URL])
|
|
subprocess.call(['sh', INSTALLER_SCRIPT, '--prefix=' + target_dir])
|
|
|
|
|
|
def main():
|
|
if 'linux' not in sys.platform:
|
|
print >> sys.stderr, 'This script only runs on Linux.'
|
|
sys.exit(1)
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--target_dir', '-t', required=True)
|
|
args = parser.parse_args()
|
|
create_asset(args.target_dir)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|