diff options
author | Jordan Pickwell <4682321+jpickwell@users.noreply.github.com> | 2024-01-04 12:49:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 12:49:36 -0600 |
commit | adf11bfdd5ebd64d712febd5b11202d08b7c3225 (patch) | |
tree | 54361c38ad93f8a3f460943b502860f1636c0b45 /README.md | |
parent | Merge pull request #401 from wildwestrom/master (diff) | |
download | YubiKey-Guide-adf11bfdd5ebd64d712febd5b11202d08b7c3225.tar.gz |
Update README.md
Quote ISO URL, and add `$` RegExp end-of-string anchor to return only the ISO file and none of the other entries that contain `xfce.iso`.
This avoids unnecessary cURL errors.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -121,11 +121,11 @@ This guide recommends using a bootable "live" Debian Linux image to provide such To use Debian Live, download the latest image: ```console -$ curl -LfO https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/SHA512SUMS +$ curl -fLO https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/SHA512SUMS -$ curl -LfO https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/SHA512SUMS.sign +$ curl -fLO https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/SHA512SUMS.sign -$ curl -LfO https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/$(awk '/xfce.iso/ {print $2}' SHA512SUMS) +$ curl -fLO "https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/$(awk '/xfce.iso$/ {print $2}' SHA512SUMS)" ``` Verify the signature of the hashes file with GPG: |