mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 19:01:26 +01:00
Fix wrong path name
This commit is contained in:
parent
7811e58726
commit
fde5b16332
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ func getReposFiles(userName, repoName, commitId string, rpath string) ([]*RepoFi
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd := exec.Command("git", "log", "-1", "--pretty=format:%H", commitId, "--", entry.Name)
|
cmd := exec.Command("git", "log", "-1", "--pretty=format:%H", commitId, "--", path.Join(dirname, entry.Name))
|
||||||
cmd.Dir = repopath
|
cmd.Dir = repopath
|
||||||
out, err := cmd.Output()
|
out, err := cmd.Output()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue