forked from mirror/cobra
cmd: Fix incorrect cmd dir
This commit is contained in:
parent
7bb5276f5f
commit
7bd35d3b95
|
@ -138,7 +138,7 @@ func findCmdDir(absPath string) string {
|
|||
files, _ := filepath.Glob(filepath.Join(absPath, "c*"))
|
||||
for _, file := range files {
|
||||
if isCmdDir(file) {
|
||||
return file
|
||||
return filepath.Base(file)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue