Skip to content

Commit 70893c4

Browse files
jfroysoharaa
authored andcommitted
Add missing return in getSystemSearchPaths for debian like containers
Signed-off-by: Evan Lezar <[email protected]> (cherry picked from commit aa50114)
1 parent d4431ef commit 70893c4

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
@@ -255,7 +255,7 @@ func (l *Ldconfig) getLdsoconfDirectories(configFilePath string) (map[string]str
255255

256256
func (l *Ldconfig) getSystemSerachPaths() []string {
257257
if l.isDebianLikeContainer {
258-
debianSystemSearchPaths()
258+
return debianSystemSearchPaths()
259259
}
260260
return nonDebianSystemSearchPaths()
261261
}

0 commit comments

Comments
 (0)