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:
authorPavlo Strokov <pstrokov@gitlab.com>2021-07-19 22:01:40 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2021-07-21 12:35:11 +0300
commit335e3d74b2a67d79f7dcb9bc668ca84178686de6 (patch)
tree70e9526e2c741098a63b4a25d39e281578ba5b41 /Makefile
parent0c9cf732b5774fa948348bbd6f273009bd66e04c (diff)
gitaly-git2go: cleanup backwards compatibility code
After releasing a new convention on deploying gitaly-git2go during gitaly setup we can now remove ad-hoc fix for detecting proper gitaly-git2go binary and move forward with the new approach only. Closes: https://gitlab.com/gitlab-org/gitaly/-/issues/3666 Changelog: other
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 430884359..947b14a11 100644
--- a/Makefile
+++ b/Makefile
@@ -240,7 +240,7 @@ build: ${SOURCE_DIR}/.ruby-bundle libgit2
# We use version suffix for the gitaly-git2go binary to support compatibility contract between
# gitaly and gitaly-git2go during upgrade deployment.
# For more information refer to https://gitlab.com/gitlab-org/gitaly/-/issues/3647#note_599082033
- cp ${BUILD_DIR}/bin/gitaly-git2go "${BUILD_DIR}/bin/gitaly-git2go-${MODULE_VERSION}"
+ mv ${BUILD_DIR}/bin/gitaly-git2go "${BUILD_DIR}/bin/gitaly-git2go-${MODULE_VERSION}"
.PHONY: install
## Install Gitaly binaries. The target directory can be modified by setting PREFIX and DESTDIR.