mirror of
https://github.com/thead-yocto-mirror/skia
synced 2026-06-21 08:52:36 +02:00
18 lines
404 B
Bash
Executable File
18 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 Google, LLC
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -x -e
|
|
|
|
export GOCACHE="$(pwd)/cache/go_cache"
|
|
export GOPATH="$(pwd)/cache/gopath"
|
|
export GOROOT="$(pwd)/go/go"
|
|
|
|
cd skia
|
|
|
|
# Build task drivers from the infra repo.
|
|
export GOBIN="${1}"
|
|
go install -v go.skia.org/infra/infra/bots/task_drivers/update_go_deps
|