Skip to content

Commit

Permalink
fix(deepin): Correct architecture insertion logic
Browse files Browse the repository at this point in the history
so Deepin 23 and  later are correctly adjusted.
  • Loading branch information
philclifford authored and lj3954 committed Oct 20, 2024
1 parent 70603de commit 8299bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ function get_deepin() {
# deepin-desktop-community-20.3-amd64.iso
local URL="https://cdimage.deepin.com/releases/"${RELEASE}
# Correct URL for 23-RC onwards which has architecture directories
if [[ "${RELEASE}" == *"23-RC"* ]] ; then
if [[ ! "${RELEASE}" == "20.9" ]] ; then
URL+="/amd64"
fi
local ISO="deepin-desktop-community-${REV}-amd64.iso"
Expand Down

0 comments on commit 8299bfc

Please sign in to comment.