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:
authorPaul Okstad <pokstad@gitlab.com>2020-11-10 10:42:15 +0300
committerPaul Okstad <pokstad@gitlab.com>2020-11-10 10:42:15 +0300
commitdf0bf6e1f1c9fdd554cafb5ba75244195dfbbf1d (patch)
treec2ca6b0b769950bafac7085d89fa522556d6a095 /internal/helper
parentb27ebadaa8a9d7765fdfce0ec527c8163e37a453 (diff)
Port UserUpdateSubmodule to Go
Diffstat (limited to 'internal/helper')
-rw-r--r--internal/helper/fstype/detect_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/helper/fstype/detect_unix.go b/internal/helper/fstype/detect_unix.go
index f946002e0..e5665dae5 100644
--- a/internal/helper/fstype/detect_unix.go
+++ b/internal/helper/fstype/detect_unix.go
@@ -15,7 +15,7 @@ func detectFileSystem(path string) string {
if c == 0 {
break
}
- buf = append(buf, byte(c))
+ buf = append(buf, c)
}
if len(buf) == 0 {