Change-Id: I318e1a4d0cad258489ff25595cfc28b619317aac Reviewed-on: https://skia-review.googlesource.com/c/skia/+/259805 Reviewed-by: Ben Wagner aka dogben <benjaminwagner@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
37 lines
854 B
Python
Executable File
37 lines
854 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2016 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 argparse
|
|
import subprocess
|
|
|
|
|
|
# Remember to also update the go_win asset when this is updated.
|
|
GO_URL = "https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz"
|
|
|
|
|
|
def create_asset(target_dir):
|
|
"""Create the asset."""
|
|
p1 = subprocess.Popen(["curl", GO_URL], stdout=subprocess.PIPE)
|
|
p2 = subprocess.Popen(["tar", "-C", target_dir, "-xzf" "-"], stdin=p1.stdout)
|
|
p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
|
|
_,_ = p2.communicate()
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--target_dir', '-t', required=True)
|
|
args = parser.parse_args()
|
|
create_asset(args.target_dir)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|