From 131f008d76f8c81c502425964c3318d6d1e84191 Mon Sep 17 00:00:00 2001 From: Rickard Granberg Date: Wed, 24 Jan 2024 10:22:22 +0100 Subject: [PATCH] Fix typo --- src/patissuer/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patissuer/install.sh b/src/patissuer/install.sh index 6d31d80..8343aff 100755 --- a/src/patissuer/install.sh +++ b/src/patissuer/install.sh @@ -18,7 +18,7 @@ has_xdg=$(which xdg-open) has_jq=$(which jq) set -e -if [[ -z "$has_wget" || -z "$has_xdg" || -z "$has_jq"]]; then +if [[ -z "$has_wget" || -z "$has_xdg" || -z "$has_jq" ]]; then apt-get update -y apt-get -y install --no-install-recommends --reinstall wget ca-certificates unzip libnss3-tools xdg-utils jq apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*