9d834581da
This contains the Go code dependencies of our infra repo and will be used to insulate us from upstream changes which break us due to API changes, etc. Bug: skia: Change-Id: I6ce36a4e41b6d7686fe2598ba980640854cd4f11 Reviewed-on: https://skia-review.googlesource.com/145158 Commit-Queue: Eric Boren <borenet@google.com> Reviewed-by: Ravi Mistry <rmistry@google.com>
17 lines
278 B
Python
Executable File
17 lines
278 B
Python
Executable File
#!/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.
|
|
|
|
|
|
"""Download the current version of the asset."""
|
|
|
|
|
|
import common
|
|
|
|
|
|
if __name__ == '__main__':
|
|
common.run('download')
|