From b9814e76b27d6225ab83e0b1cfc14f888e382016 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Mon, 7 Jan 2019 14:41:52 -0500 Subject: Minor: Remove redundant basename command in ooe.sh Signed-off-by: Chris Evich --- contrib/cirrus/ooe.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/cirrus') diff --git a/contrib/cirrus/ooe.sh b/contrib/cirrus/ooe.sh index d79e574b2..3c8a0409d 100755 --- a/contrib/cirrus/ooe.sh +++ b/contrib/cirrus/ooe.sh @@ -7,10 +7,10 @@ set -eo pipefail -SCRIPT_PATH="$0" +SCRIPT_BASEDIR="$(basename $0)" badusage() { - echo "Incorrect usage: $(basename $SCRIPT_PATH) [options]" > /dev/stderr + echo "Incorrect usage: $SCRIPT_BASEDIR) [options]" > /dev/stderr echo "ERROR: $1" exit 121 } @@ -18,7 +18,7 @@ badusage() { COMMAND="$@" [[ -n "$COMMAND" ]] || badusage "No command specified" -OUTPUT_TMPFILE="$(mktemp -p '' $(basename $0)_output_XXXX)" +OUTPUT_TMPFILE="$(mktemp -p '' ${SCRIPT_BASEDIR}_output_XXXX)" output_on_error() { RET=$? set +e -- cgit v1.2.3-54-g00ecf