Skip to content

Commit 1cf8ccd

Browse files
jfroyelezar
authored andcommitted
Add missing return in getSystemSearchPaths for debian like containers
Signed-off-by: Evan Lezar <[email protected]>
1 parent 0b28791 commit 1cf8ccd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ldconfig/ldconfig.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ func (l *Ldconfig) getLdsoconfDirectories(configFilePath string) (map[string]str
268268

269269
func (l *Ldconfig) getSystemSearchPaths() []string {
270270
if l.isDebianLikeContainer {
271-
debianSystemSearchPaths()
271+
return debianSystemSearchPaths()
272272
}
273273
return nonDebianSystemSearchPaths()
274274
}

0 commit comments

Comments
 (0)