From f71ef61fef7653f3a4b1dbe09e7d5fc51d1e0428 Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Thu, 14 May 2020 21:48:50 +0200 Subject: [PATCH] Remove unused setup-dev.sh, add protoc to the readme --- README.md | 1 + setup-dev.sh | 29 ----------------------------- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100755 setup-dev.sh diff --git a/README.md b/README.md index 07913899..8a9ad052 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ The recommended way is to use the main `Makefile` that runs everything inside a If you don't have or want to use Docker for building you need to make sure you have all the needed tools installed locally: * go 1.14 +* [protoc](https://github.com/protocolbuffers/protobuf) * `go get github.com/golang/protobuf/protoc-gen-go@v1.4.1` * `go get golang.org/x/tools/cmd/goimports` * `go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.26.0` diff --git a/setup-dev.sh b/setup-dev.sh deleted file mode 100755 index 64450555..00000000 --- a/setup-dev.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2020 Docker Inc. - -# Permission is hereby granted, free of charge, to any person -# obtaining a copy of this software and associated documentation -# files (the "Software"), to deal in the Software without -# restriction, including without limitation the rights to use, copy, -# modify, merge, publish, distribute, sublicense, and/or sell copies -# of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: - -# The above copyright notice and this permission notice shall be -# included in all copies or substantial portions of the Software. - -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, -# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -# HOLDERS BE LIABLE FOR ANY CLAIM, -# DAMAGES OR OTHER LIABILITY, -# WHETHER IN AN ACTION OF CONTRACT, -# TORT OR OTHERWISE, -# ARISING FROM, OUT OF OR IN CONNECTION WITH -# THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -./scripts/setup/install-protobuf -./scripts/setup/install-go-gen