Skip to content

Commit bfe98f1

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

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

275275
func (l *Ldconfig) getSystemSearchPaths() []string {
276276
if l.isDebianLikeContainer {
277-
debianSystemSearchPaths()
277+
return debianSystemSearchPaths()
278278
}
279279
return nonDebianSystemSearchPaths()
280280
}

0 commit comments

Comments
 (0)