Skip to content

Commit 01abc4f

Browse files
Merge pull request #159 from FLuzzi-csw/fluzzi/bds_exes
fix delphi directory retrieval
2 parents c7b74f5 + 13c7d50 commit 01abc4f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

utils/dcc32/dcc32.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ func GetDcc32DirByCmd() []string {
1616

1717
outputStr := strings.ReplaceAll(string(output), "\t", "")
1818
outputStr = strings.ReplaceAll(outputStr, "\r", "")
19-
outputStr = strings.ReplaceAll(outputStr, "\n", "")
2019

21-
if len(outputStr) == 0 {
20+
if len(strings.ReplaceAll(outputStr, "\n", "")) == 0 {
2221
return []string{}
2322
}
2423

25-
installations := strings.Split(outputStr, "\n")
26-
for key, value := range installations {
27-
installations[key] = filepath.Dir(value)
24+
installations := []string{}
25+
for _, value := range strings.Split(outputStr, "\n") {
26+
if len(strings.TrimSpace(value)) > 0 {
27+
installations = append(installations, filepath.Dir(value))
28+
}
2829
}
2930

3031
return installations

0 commit comments

Comments
 (0)