Skip to content

Commit

Permalink
Update the Release scripts to use the agreed-upon filename formats
Browse files Browse the repository at this point in the history
  • Loading branch information
learn-more committed Sep 9, 2024
1 parent 75c859f commit 448fd52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Release_Configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Release_ISOs
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 448fd52

Please sign in to comment.