mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
15 lines
501 B
Text
15 lines
501 B
Text
INFO="ReactOS|Independent||https://reactos.org/|Imagine running your favorite Windows applications and drivers in an open-source environment you can trust.";;
|
|
|
|
function releases_reactos() {
|
|
echo latest
|
|
}
|
|
|
|
function get_reactos() {
|
|
local HASH=""
|
|
local URL=""
|
|
# no longer needed?
|
|
#local TMPURL=""
|
|
|
|
URL=$(curl -Lfs "https://sourceforge.net/projects/reactos/files/latest/download" -w %{url_effective} -o /this/is/a/nonexistent/directory/$RANDOM/$RANDOM)
|
|
echo "${URL} ${HASH}"
|
|
}
|