Update the Release scripts to use the agreed-upon filename formats

This commit is contained in:
Mark Jansen 2024-09-08 16:06:40 +02:00
parent 75c859ffc9
commit 448fd52557
2 changed files with 5 additions and 5 deletions

View File

@ -48,7 +48,7 @@ fi
# Get the suffix from Git if none was entered.
if [ "${version}" = "" ]; then
version=`git describe --abbrev=7 --long`
version=`git describe --abbrev=0`
fi
# Write the config file

View File

@ -16,10 +16,10 @@ fi
# Constants
ROOTDIR="$PWD"
OUTPUTDIR="output-MinGW-i386"
BOOTCDISO="ReactOS-${version}.iso"
BOOTCDZIP="ReactOS-${version}-iso.zip"
LIVECDISO="ReactOS-${version}-Live.iso"
LIVECDZIP="ReactOS-${version}-live.zip"
BOOTCDISO="ReactOS-${version}-${ROS_ARCH}.iso"
BOOTCDZIP="ReactOS-${version}-${ROS_ARCH}-iso.zip"
LIVECDISO="ReactOS-${version}-${ROS_ARCH}-live.iso"
LIVECDZIP="ReactOS-${version}-${ROS_ARCH}-live.zip"
# Start from a clean state
rm -f "${ROOTDIR}/${BOOTCDZIP}"