From f842182eaaf9a29891209806024a19a73be98cfd Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Fri, 14 Dec 2018 12:30:52 +0100 Subject: [PATCH] gst-raiplay-download.sh: fix some shellcheck warnings --- shell/gst-raiplay-download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/gst-raiplay-download.sh b/shell/gst-raiplay-download.sh index 4fc86d8..088f1ba 100755 --- a/shell/gst-raiplay-download.sh +++ b/shell/gst-raiplay-download.sh @@ -4,7 +4,7 @@ set -e -[ "x$1" = "x" -o "x$2" = x ] && { echo "usage: $(basename $0) " 1>&2; exit 1; } +{ [ "x$1" = "x" ] || [ "x$2" = x ]; } && { echo "usage: $(basename "$0") " 1>&2; exit 1; } SOURCE_URL="$1" OUTPUT_FILE="$2" -- 2.1.4