mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add braces to variables
This commit is contained in:
parent
4a91cdcfda
commit
464c13ac17
1 changed files with 2 additions and 2 deletions
4
quickget
4
quickget
|
@ -633,8 +633,8 @@ function get_archlinux() {
|
|||
|
||||
validate_release "releases_archlinux"
|
||||
VERSION=$(wget -q -O- 'https://archlinux.org/releng/releases/json/' | jq '.latest_version' | cut -d "\"" -f 2)
|
||||
URL="https://mirror.rackspace.com/archlinux/iso/$VERSION"
|
||||
ISO="archlinux-$VERSION-x86_64.iso"
|
||||
URL="https://mirror.rackspace.com/archlinux/iso/${VERSION}"
|
||||
ISO="archlinux-${VERSION}-x86_64.iso"
|
||||
HASH=$(wget -q -O- 'https://archlinux.org/releng/releases/json/' | jq '.releases[0].sha1_sum' | cut -d "\"" -f 2)
|
||||
web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||
check_hash "${ISO}" "${HASH}"
|
||||
|
|
Loading…
Reference in a new issue