From 3601d284615439f5b47f0675194f4e2cafc6b20c Mon Sep 17 00:00:00 2001 From: mgcaret Date: Mon, 16 Dec 2019 11:11:10 -0800 Subject: [PATCH] IIgs: only try to make .po if AppleCommander is present --- platforms/IIgs/build.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/platforms/IIgs/build.sh b/platforms/IIgs/build.sh index f92bcb8..929ad47 100755 --- a/platforms/IIgs/build.sh +++ b/platforms/IIgs/build.sh @@ -6,5 +6,8 @@ ca65 -I ../../inc IIgs.s -l IIgs.lst ../../build.sh IIgs ld65 -C IIgs.l -S 0x8000 IIgs.o ../../forth.o -m forth.map -o forth ls -l forth -java -jar ${ACMD} -pro140 forth.po FORTH -java -jar ${ACMD} -p forth.po FORTH SYS < forth +if [ -r "${ACMD}" ]; then + java -jar ${ACMD} -pro140 forth.po FORTH + java -jar ${ACMD} -p forth.po FORTH SYS < forth +fi +