From 50ad0a7656b2545285a24851e0d7ef2fee7033c3 Mon Sep 17 00:00:00 2001 From: Emil Date: Fri, 4 Aug 2023 04:51:06 -0600 Subject: [PATCH] Minor fixes echo to echo -e add build.sh to .gitignore --- .gitignore | 1 + build.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4f9cdf1..f6e3652 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ probotic config.h .gdb_history *.sqlite +build.sh diff --git a/build.sh b/build.sh index e7b6268..9cd16e4 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Simple script handling unity builds and options. +# Script handling unity builds and options. DIR=$(dirname $(readlink -f "$0")) cd $DIR @@ -27,4 +27,4 @@ fi echo "$CC $CFLAGS -pipe $DIR/src/unity.c -o $PREFIX/$PROGN $CPPFLAGS $LDFLAGS" $CC $CFLAGS -pipe $DIR/src/unity.c -o $PREFIX/$PROGN $CPPFLAGS $LDFLAGS -echo "\nStatus: $?" +echo -e "\nStatus: $?"