From f70af21011f84e5283f198674d528df092d7dd76 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Sat, 3 Sep 2022 13:41:14 -0700 Subject: [PATCH] Updated build script --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 7b500a3..37b5af8 100755 --- a/build.sh +++ b/build.sh @@ -11,7 +11,7 @@ CPY="$HOME/roms" ETC="src/manifest.tal" ARG="" -echo ">> Cleaning.." +echo ">> Cleaning" rm -rf bin mkdir bin @@ -21,7 +21,7 @@ then $LIN $SRC $ETC fi -echo ">> Assembling.." +echo ">> Assembling $SRC" $ASM $SRC $DST if [[ "$*" == *"--save"* ]] @@ -30,5 +30,5 @@ then cp $DST $CPY fi -echo ">> Running.." +echo ">> Running $DST" $EMU $DST $ARG