[infra] Also run install_go_deps.sh during go_deps asset creation

Bug: skia:
Change-Id: I41b3a0a4eea61e095bfda8affc17db0a0a7a91c5
Reviewed-on: https://skia-review.googlesource.com/c/159144
Reviewed-by: Eric Boren <borenet@google.com>
Reviewed-by: Ravi Mistry <rmistry@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
This commit is contained in:
Eric Boren 2018-10-03 08:59:24 -04:00 committed by Skia Commit-Bot
parent 5b2bc87918
commit 8d5da42a20

View File

@ -28,6 +28,12 @@ def create_asset(target_dir):
'frontend', 'bower_components')
os.remove(bad_symlink)
# Install additional dependencies via the install_go_deps.sh script.
script = os.path.join(
target_dir, 'src', 'go.skia.org', 'infra', 'scripts',
'install_go_deps.sh')
subprocess.check_call(script, env=env)
def main():
parser = argparse.ArgumentParser()