Fix failure checks (#545)

This commit is contained in:
HarithaVattikuti 2024-08-28 17:22:02 -05:00 committed by GitHub
parent dbebe359e4
commit 9be03d3dab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -331,6 +331,10 @@ get_machine_architecture() {
echo "riscv64"
return 0
;;
powerpc|ppc)
echo "ppc"
return 0
;;
esac
fi