Skip to content

Commit

Permalink
vx-linux: 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit authored and philclifford committed Nov 11, 2023
1 parent e88c40b commit 3bb69b6
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ function editions_void() {
}

function releases_vxlinux() {
echo 6.1.2 6.1 5.0 4.2 4.1 4.0
wget -q https://github.com/VX-Linux/main/releases/latest -O- |grep -o -e 'releases/tag/[[:digit:]]\+\.[[:digit:]]\+'|head -1|cut -d/ -f3
}

function releases_windows() {
Expand Down Expand Up @@ -1866,6 +1866,14 @@ function get_void() {
echo "${URL}/${ISO} ${HASH}"
}

function get_vxlinux() {
local HASH=""
local ISO="vx-${RELEASE}.iso"
local URL="https://github.com/VX-Linux/main/releases/download/${RELEASE}"

HASH=$(wget -q -O- "${URL}/vx-${RELEASE}.md5" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_xerolinux() {
local HASH=""
Expand All @@ -1888,19 +1896,6 @@ function get_zorin() {
echo "${URL} ${HASH}"
}

function get_vxlinux() {
local HASH=""
local ISO=""
local URL="https://github.com/dessington/vx-linux/releases/download/${RELEASE}"

if [ "$RELEASE" == "4.0" ]; then
ISO="vx-linux-4.0-qt.iso"
else
ISO="vx-linux-${RELEASE}.iso"
fi
echo "${URL}/${ISO} ${HASH}"
}

function unattended_windows() {
cat << 'EOF' > "${1}"
<?xml version="1.0" encoding="utf-8"?>
Expand Down

0 comments on commit 3bb69b6

Please sign in to comment.