GoPLS Viewer

Home|gopls/cmd/getgo/upload.bash
1#!/bin/bash
2
3# Copyright 2017 The Go Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style
5# license that can be found in the LICENSE file.
6
7if ! command -v gsutil 2>&1 > /dev/null; then
8  echo "Install gsutil:"
9  echo
10  echo "   https://cloud.google.com/storage/docs/gsutil_install#sdk-install"
11fi
12
13if [ ! -d build ]; then
14  echo "Run make.bash first"
15fi
16
17set -e -o -x
18
19gsutil -m cp -a public-read build/* gs://golang/getgo
20
MembersX
Members
X