From 0ede4ff49dde85bed9882bdabbec80a6ec138858 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 16 Oct 2023 20:09:33 +0200 Subject: fix(osurl): whoops, -le is not the same as -lt. --- osurl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'osurl') diff --git a/osurl b/osurl index 7a96400..4775783 100755 --- a/osurl +++ b/osurl @@ -3,7 +3,7 @@ # https://en.opensuse.org/openSUSE:Packaging_Patches_guidelines#Current_set_of_abbreviations set -eu -if [ $# -le 1 ] ; then +if [ $# -lt 1 ] ; then STR="$(cat)" else STR="$1" -- cgit