mirror of
https://github.com/Kron4ek/Conty
synced 2024-11-16 19:50:06 +01:00
Fix bootstrap integrity checking
This commit is contained in:
parent
576f16fcf6
commit
f34b9c387e
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ for link in ${bootstrap_urls}; do
|
|||
"https://${link}/archlinux/iso/${current_release}/sha256sums.txt"
|
||||
|
||||
if [ -s sha256sums.txt ]; then
|
||||
cat sha256sums.txt | grep bootstrap > sha256.txt
|
||||
cat sha256sums.txt | grep bootstrap-${current_release} > sha256.txt
|
||||
|
||||
echo "Verifying the integrity of the bootstrap"
|
||||
if sha256sum -c sha256.txt &>/dev/null; then
|
||||
|
|
Loading…
Reference in a new issue