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:
authorJacob Vosmaer <jacob@gitlab.com>2018-10-26 18:47:38 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-10-26 18:56:29 +0300
commit5acb476a51436ddb68227727eaac07788dbc20e4 (patch)
tree59fe0ffc2aa03399c8a7c5416cd8c3f1a6ccafce /_support
parent2b35b3b97999723917530090831b4efbd66f643f (diff)
Fix makefile 'find ruby/vendor' bug
Diffstat (limited to '_support')
-rw-r--r--_support/makegen.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/_support/makegen.go b/_support/makegen.go
index 632b460f3..949fed8f3 100644
--- a/_support/makegen.go
+++ b/_support/makegen.go
@@ -364,7 +364,7 @@ notice: {{ .GoVendor }} clean-ruby-vendor-go
.PHONY: clean-ruby-vendor-go
clean-ruby-vendor-go:
- cd {{ .SourceDir }} && find ruby/vendor -type f -name '*.go' -delete
+ cd {{ .SourceDir }} && mkdir -p ruby/vendor && find ruby/vendor -type f -name '*.go' -delete
.PHONY: govendor-tagged
govendor-tagged: {{ .GoVendor }}