Use https to clone qubes-builder

Builder config points at https for a long time, but the documentation
still used git:// protocol. Update that, especially as github
discontinued support for it.
This commit is contained in:
Marek Marczykowski-Górecki 2022-03-16 13:38:12 +01:00
parent ab99455ec6
commit 2171e182ee
No known key found for this signature in database
GPG Key ID: F32894BE9684938A
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ gpg --recv-keys 0xDDFA1A3E36879494
wget https://keys.qubes-os.org/keys/qubes-developers-keys.asc
gpg --import qubes-developers-keys.asc
git clone git://github.com/QubesOS/qubes-builder.git qubes-builder
git clone https://github.com/QubesOS/qubes-builder.git qubes-builder
cd qubes-builder
# Verify its integrity:

View File

@ -57,7 +57,7 @@ See [verifying signatures](/security/verifying-signatures/#how-to-import-and-aut
Now let's bootstrap the builder. Unfortunately, the builder cannot verify itself (the classic Chicken and Egg problem), so we need to verify the signature manually:
~~~
git clone git://github.com/QubesOS/qubes-builder.git
git clone https://github.com/QubesOS/qubes-builder.git
cd qubes-builder
git tag -v `git describe`
~~~