rpi: fix regression in RPI Docker image (#4494) (#4495)

This commit is contained in:
Alessandro Ros
2025-05-06 17:25:22 +02:00
committed by GitHub
parent ad15b4960c
commit de46a288ac

View File

@@ -66,7 +66,7 @@ func getArchitecture(libPath string) (bool, error) {
}
func checkArchitecture() error {
byts, err := exec.Command("/usr/sbin/ldconfig", "-p").Output()
byts, err := exec.Command("/sbin/ldconfig", "-p").Output()
if err != nil {
return fmt.Errorf("ldconfig failed: %w", err)
}