From 7551db868645321811660cfc67b0b9569fb579a8 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Mon, 26 Feb 2018 10:20:28 -0800 Subject: [PATCH] Correct BOOST_OPTIONS display error. --- install.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/install.sh b/install.sh index c3a8286d..35683fb4 100755 --- a/install.sh +++ b/install.sh @@ -73,23 +73,19 @@ create_directory() display_heading_message() { - local MESSAGE="$1" - echo - echo "********************** $MESSAGE **********************" + echo "********************** $@ **********************" echo } display_message() { - local MESSAGE="$1" - echo "$MESSAGE" + echo "$@" } display_error() { - local MESSAGE="$1" - >&2 echo "$MESSAGE" + >&2 echo "$@" } initialize_git()