From 3bcd40be1299a803ad8cdf20151b315535445925 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Mon, 29 Apr 2024 20:40:38 -0700 Subject: [PATCH] Fix regression in apeinstall.sh (#1161) This should have been a part of a6baba1. --- ape/apeinstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ape/apeinstall.sh b/ape/apeinstall.sh index 37771820d..c1620f3fe 100755 --- a/ape/apeinstall.sh +++ b/ape/apeinstall.sh @@ -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