We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7b74f5 + 13c7d50 commit 01abc4fCopy full SHA for 01abc4f
utils/dcc32/dcc32.go
@@ -16,15 +16,16 @@ func GetDcc32DirByCmd() []string {
16
17
outputStr := strings.ReplaceAll(string(output), "\t", "")
18
outputStr = strings.ReplaceAll(outputStr, "\r", "")
19
- outputStr = strings.ReplaceAll(outputStr, "\n", "")
20
21
- if len(outputStr) == 0 {
+ if len(strings.ReplaceAll(outputStr, "\n", "")) == 0 {
22
return []string{}
23
}
24
25
- installations := strings.Split(outputStr, "\n")
26
- for key, value := range installations {
27
- installations[key] = filepath.Dir(value)
+ installations := []string{}
+ for _, value := range strings.Split(outputStr, "\n") {
+ if len(strings.TrimSpace(value)) > 0 {
+ installations = append(installations, filepath.Dir(value))
28
+ }
29
30
31
return installations
0 commit comments