This website works better with JavaScript.
Home
Explore
Help
Sign In
closed-social
/
gitea
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
bug fixed
for-closed-social
Lunny Xiao
10 years ago
parent
3d1a967477
commit
97e82a0ff6
2 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
models/repo.go
+1
-0
serve.go
+ 1
- 0
models/repo.go
View File
@ -200,6 +200,7 @@ func CreateRepository(user *User, repoName, desc, repoLang, license string, priv
}
c
:=
exec
.
Command
(
"git"
,
"update-server-info"
)
c
.
Dir
=
repoPath
err
=
c
.
Run
(
)
if
err
!=
nil
{
log
.
Error
(
"repo.CreateRepository(exec update-server-info): %v"
,
err
)
+ 1
- 0
serve.go
View File
@ -281,6 +281,7 @@ func runServ(k *cli.Context) {
//runUpdate(k)
c
:=
exec
.
Command
(
"git"
,
"update-server-info"
)
c
.
Dir
=
models
.
RepoPath
(
user
.
Name
,
repoName
)
err
:=
c
.
Run
(
)
if
err
!=
nil
{
log
.
Error
(
"update-server-info: %v"
,
err
)
Write
Preview
Loading…
Cancel
Save