mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-01 03:14:16 +00:00
9492118ab1
Currently, the script fails, and not with a good error message. related to https://github.com/golang/protobuf/issues/1524 Change-Id: Ia27a895a7ae2f6349bb1262936e4428fa485bb92 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/538955 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Lasse Folger <lassefolger@google.com>
13 lines
416 B
Bash
Executable File
13 lines
416 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
mkdir -p .cache/benchdata
|
|
cd .cache/benchdata
|
|
|
|
echo "This script needs to be updated to work with https://github.com/google/fleetbench" >&2
|
|
echo "See https://github.com/golang/protobuf/issues/1570" >&2
|
|
exit 1
|