Eric Boren | 346e156 | 2019-06-18 13:46:37 -0400 | [diff] [blame] | 1 | #!/bin/bash |
2 | # Copyright 2019 Google, LLC | ||||
3 | # | ||||
4 | # Use of this source code is governed by a BSD-style license that can be | ||||
5 | # found in the LICENSE file. | ||||
6 | |||||
7 | set -x -e | ||||
8 | |||||
9 | export GOCACHE="$(pwd)/cache/go_cache" | ||||
10 | export GOPATH="$(pwd)/cache/gopath" | ||||
11 | export GOROOT="$(pwd)/go/go" | ||||
12 | |||||
13 | cd skia | ||||
14 | |||||
15 | # Build task drivers from the infra repo. | ||||
16 | export GOBIN="${1}" | ||||
17 | go install -v go.skia.org/infra/infra/bots/task_drivers/update_go_deps |