diff options
Diffstat (limited to 'internal/db/repo.go')
-rw-r--r-- | internal/db/repo.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/internal/db/repo.go b/internal/db/repo.go index 3195e5dd..6d3c8689 100644 --- a/internal/db/repo.go +++ b/internal/db/repo.go @@ -30,10 +30,11 @@ import ( "github.com/gogs/git-module" api "github.com/gogs/go-gogs-client" + "gogs.io/gogs/internal/assets/conf" "gogs.io/gogs/internal/avatar" - "gogs.io/gogs/internal/bindata" "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/markup" + "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/process" "gogs.io/gogs/internal/setting" "gogs.io/gogs/internal/sync" @@ -56,7 +57,7 @@ func LoadRepoConfig() { types := []string{"gitignore", "license", "readme", "label"} typeFiles := make([][]string, 4) for i, t := range types { - files, err := bindata.AssetDir("conf/" + t) + files, err := conf.AssetDir("conf/" + t) if err != nil { log.Fatal(4, "Fail to get %s files: %v", t, err) } @@ -929,10 +930,10 @@ func getRepoInitFile(tp, name string) ([]byte, error) { // Use custom file when available. customPath := path.Join(setting.CustomPath, relPath) - if com.IsFile(customPath) { + if osutil.IsFile(customPath) { return ioutil.ReadFile(customPath) } - return bindata.Asset(relPath) + return conf.Asset(relPath) } func prepareRepoCommit(repo *Repository, tmpDir, repoPath string, opts CreateRepoOptions) error { |