mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-31 13:57:26 -08:00
fix(git): use actual path instead of empty -C operator
relates to #1474
This commit is contained in:
parent
b400f05555
commit
d3e638e067
|
@ -116,6 +116,7 @@ func (g *git) enabled() bool {
|
||||||
if gitdir.isDir {
|
if gitdir.isDir {
|
||||||
g.gitWorkingFolder = gitdir.path
|
g.gitWorkingFolder = gitdir.path
|
||||||
g.gitRootFolder = gitdir.path
|
g.gitRootFolder = gitdir.path
|
||||||
|
g.gitWorktreeFolder = strings.TrimSuffix(gitdir.path, ".git")
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
// handle worktree
|
// handle worktree
|
||||||
|
|
Loading…
Reference in a new issue