From f5c60ee47c097d7408470e4be6182bf9ee684e84 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Mon, 30 Oct 2017 16:18:59 +0100 Subject: build: Improve bash scripts This improves the bash scripts so they are less error prone. Mistakes were found using the parser on shellcheck.net Signed-off-by: Sander Vrijders Signed-off-by: Dimitri Staessens --- install_debug.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'install_debug.sh') diff --git a/install_debug.sh b/install_debug.sh index 8f39be00..277ca92d 100755 --- a/install_debug.sh +++ b/install_debug.sh @@ -1,9 +1,16 @@ #!/usr/bin/env bash +if (($# == 1 )) +then + PREFIX=${1/%\//} +else + PREFIX="/usr/local/ouroboros" +fi + BUILDDIR=build DEBUGDIR=debug -bash compile_debug.sh $1 +bash compile_debug.sh "$PREFIX" -cd $BUILDDIR/$DEBUGDIR +cd $BUILDDIR/$DEBUGDIR || exit 1 make install -- cgit v1.2.3