Fix regression in apeinstall.sh (#1161)

This should have been a part of a6baba1.
This commit is contained in:
Matt Colyer 2024-04-29 20:40:38 -07:00 committed by GitHub
parent fcfdd26b72
commit 3bcd40be12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,8 +10,8 @@ if [ ! -f ape/loader.c ]; then
cd "$COSMO" || exit
fi
if [ -x build/bootstrap/make.com ]; then
MAKE=build/bootstrap/make.com
if [ -x build/bootstrap/make ]; then
MAKE=build/bootstrap/make
else
MAKE=make
fi