summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2019-01-07 14:41:52 -0500
committerChris Evich <cevich@redhat.com>2019-01-07 14:41:52 -0500
commitb9814e76b27d6225ab83e0b1cfc14f888e382016 (patch)
treefad08be2135907b7e472c5f0cf8e309c942e5904 /contrib
parent148b4920dc9d866ce60654498af6e6bbc1d72f09 (diff)
downloadpodman-b9814e76b27d6225ab83e0b1cfc14f888e382016.tar.gz
podman-b9814e76b27d6225ab83e0b1cfc14f888e382016.tar.bz2
podman-b9814e76b27d6225ab83e0b1cfc14f888e382016.zip
Minor: Remove redundant basename command in ooe.sh
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/cirrus/ooe.sh6
1 files changed, 3 insertions, 3 deletions
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) <command> [options]" > /dev/stderr
+ echo "Incorrect usage: $SCRIPT_BASEDIR) <command> [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