summaryrefslogtreecommitdiffstats
path: root/modules/repofiles/repofiles.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/repofiles/repofiles.go')
-rw-r--r--modules/repofiles/repofiles.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/repofiles/repofiles.go b/modules/repofiles/repofiles.go
deleted file mode 100644
index 1fc900490c..0000000000
--- a/modules/repofiles/repofiles.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.package repofiles
-
-package repofiles
-
-import (
- "path"
- "strings"
-)
-
-// CleanUploadFileName Trims a filename and returns empty string if it is a .git directory
-func CleanUploadFileName(name string) string {
- // Rebase the filename
- name = strings.Trim(path.Clean("/"+name), " /")
- // Git disallows any filenames to have a .git directory in them.
- for _, part := range strings.Split(name, "/") {
- if strings.ToLower(part) == ".git" {
- return ""
- }
- }
- return name
-}