mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-24 18:56:11 +01:00
API change
This commit is contained in:
parent
eda3f8b3b3
commit
0e41726ece
|
@ -455,7 +455,7 @@ func initRepository(f string, user *User, repo *Repository, initReadme bool, rep
|
||||||
if repoLang != "" {
|
if repoLang != "" {
|
||||||
filePath := "conf/gitignore/" + repoLang
|
filePath := "conf/gitignore/" + repoLang
|
||||||
if com.IsFile(filePath) {
|
if com.IsFile(filePath) {
|
||||||
if _, err := com.Copy(filePath,
|
if err := com.Copy(filePath,
|
||||||
filepath.Join(tmpDir, fileName["gitign"])); err != nil {
|
filepath.Join(tmpDir, fileName["gitign"])); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -466,7 +466,7 @@ func initRepository(f string, user *User, repo *Repository, initReadme bool, rep
|
||||||
if license != "" {
|
if license != "" {
|
||||||
filePath := "conf/license/" + license
|
filePath := "conf/license/" + license
|
||||||
if com.IsFile(filePath) {
|
if com.IsFile(filePath) {
|
||||||
if _, err := com.Copy(filePath,
|
if err := com.Copy(filePath,
|
||||||
filepath.Join(tmpDir, fileName["license"])); err != nil {
|
filepath.Join(tmpDir, fileName["license"])); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue