From bae18059dd61ae42b3c5d7c36b55cb4e49559884 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 23 Sep 2020 19:55:37 +0200 Subject: [PATCH] update-pciids: Fix spacing style Fix code alignment by using a hard-tab instead of 4 spaces. Add a blank line after set -e. --- update-pciids.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update-pciids.sh b/update-pciids.sh index 5a02ca2..42faeea 100755 --- a/update-pciids.sh +++ b/update-pciids.sh @@ -1,6 +1,7 @@ #!/bin/sh set -e + SRC="https://pci-ids.ucw.cz/v2.2/pci.ids" DEST=pci.ids PCI_COMPRESSED_IDS= @@ -31,7 +32,7 @@ fi if which curl >/dev/null 2>&1 ; then DL="curl -o $DEST.new $SRC" - ${quiet} && DL="$DL -s -S" + ${quiet} && DL="$DL -s -S" elif which wget >/dev/null 2>&1 ; then DL="wget --no-timestamping -O $DEST.new $SRC" ${quiet} && DL="$DL -q" -- 2.39.2