From: Guillem Jover Date: Wed, 23 Sep 2020 17:55:37 +0000 (+0200) Subject: update-pciids: Fix spacing style X-Git-Tag: v3.8.0~104^2~1 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=bae18059dd61ae42b3c5d7c36b55cb4e49559884;p=pciutils.git update-pciids: Fix spacing style Fix code alignment by using a hard-tab instead of 4 spaces. Add a blank line after set -e. --- 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"