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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-10-05 10:19:53 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-10-05 10:19:53 +0300
commitc9c6e13d1d341f1dc3aa092e1a22aafa0cee14ba (patch)
tree45563d72eb2cf6871626b191012cf0ac3f10c179 /packed_binaries.go
parent497699f17d36d0c4a0f9ddfc9f53cf5ccfc085eb (diff)
global: Reformat sources with gofumpt v0.4.0
Reformat surces with the newly upgraded gofumpt v0.4.0.
Diffstat (limited to 'packed_binaries.go')
-rw-r--r--packed_binaries.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/packed_binaries.go b/packed_binaries.go
index 6b0774988..f3b532aba 100644
--- a/packed_binaries.go
+++ b/packed_binaries.go
@@ -11,10 +11,10 @@ import (
// buildDir is the directory path where our build target places the built binaries.
const buildDir = "_build/bin"
-//go:embed _build/bin/gitaly-hooks _build/bin/gitaly-ssh _build/bin/gitaly-git2go _build/bin/gitaly-lfs-smudge
-//
// packedBinariesFS contains embedded binaries. If you modify the above embeddings, you must also update
// GITALY_PACKED_EXECUTABLES in Makefile and packedBinaries in internal/gitaly/config/config.go.
+//
+//go:embed _build/bin/gitaly-hooks _build/bin/gitaly-ssh _build/bin/gitaly-git2go _build/bin/gitaly-lfs-smudge
var packedBinariesFS embed.FS
// UnpackAuxiliaryBinaries unpacks the packed auxiliary binaries of Gitaly into destination directory.