astro

a POSIX shell compatible gemini client (mirror of https://github.com/blmayer/astro)
git clone https://git.clttr.info/astro.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 6869c05393d7d8a8c3ea63a5ea070cb4442016e9
parent 404bc9c16b4e36ee444289585561aa3a09b96698
Author: Brian Mayer <bleemayer@gmail.com>
Date:   Wed, 29 Jun 2022 22:08:52 -0300

Fixed shellcheck disable
Diffstat:
Mastro | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/astro b/astro @@ -156,7 +156,7 @@ EOF echo "Page not found!" >&2 url="$(getprevious)" [ "$debug" ] && echo "Previous page: $url" >&2 && sleep 2 - # shellcheck disable=SC2046 + # shellcheck disable=SC2086 fetch $url return 0 ;; @@ -180,7 +180,7 @@ EOF url="$(getprevious)" # word splitting here is intentional - # shellcheck disable=SC2046 + # shellcheck disable=SC2086 fetch $url else fetch "$1" "$2" "$3" "$4" "$5"