Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2018-10-03 14:50:23 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2018-10-04 15:12:35 +0300
commit5c1e296eb7e90e54541613fefac4f242f055bf37 (patch)
treecb904eb88b19b373a0df57d0c59a25b641bbf146 /_support
parentfa3e2a029b7f758a099e64c407c08588c41c3196 (diff)
Rename gitaly proto import to gitalypb
This change the result of a grep + sed, to move away from pb, and use gitalypb instead. The gitalypb points to a vendorred directory that has the same name. This would fix the use of goimports. See also: https://gitlab.com/gitlab-org/gitaly-proto/merge_requests/213
Diffstat (limited to '_support')
-rwxr-xr-x_support/vendor-gitaly-proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/_support/vendor-gitaly-proto b/_support/vendor-gitaly-proto
index fc4c36f51..d2b1f4f0f 100755
--- a/_support/vendor-gitaly-proto
+++ b/_support/vendor-gitaly-proto
@@ -7,7 +7,7 @@ USAGE = "Usage: #{PROGNAME} [--fork GITALY_PROTO_FORK_REPO] REVISION"
ORIGIN = 'gitlab.com/gitlab-org/gitaly-proto'
def main(revision, repo:)
- run!(%W[govendor fetch #{ORIGIN}/go::#{repo}/go@#{revision}])
+ run!(%W[govendor fetch #{ORIGIN}/go/gitalypb::#{repo}/go/gitalypb@#{revision}])
end
options = ARGV.getopts(nil, 'fork:')