Fix Release_ISOs to account for the configure.sh change in 53ce7d4370d2dbcce0217b12d8a93d556a36a55b

This commit is contained in:
Colin Finck 2019-04-10 18:18:12 +02:00
parent c4a58e5480
commit c621dfd21d
No known key found for this signature in database
GPG Key ID: 1BA74E70456BA1A9
2 changed files with 4 additions and 4 deletions

View File

@ -18,15 +18,15 @@ echo "**************************************************************************
echo echo
# Ask for the version # Ask for the version
echo "What ReactOS version do you want to release? (e.g. \"0.4.10\")" echo "What ReactOS version do you want to release? (e.g. \"0.4.12\")"
echo "This will be used as suffix for the built files." echo "This will be used as suffix for the built files."
echo "If this is an RC, just hit RETURN without entering anything to use a suffix determined by Git (e.g. \"0.4.10-RC-25-gc828fce\")." echo "If this is an RC, just hit RETURN without entering anything to use a suffix determined by Git (e.g. \"0.4.12-RC-5-g8449527\")."
read version read version
echo echo
# Ask for the branch name # Ask for the branch name
while [ "$branch_name" = "" ]; do while [ "$branch_name" = "" ]; do
echo "What is the name of the Git branch? (e.g. \"ros-branch-0_4_0\")" echo "What is the name of the Git branch? (e.g. \"releases/0.4.12\")"
read branch_name read branch_name
echo echo
done done

View File

@ -44,7 +44,7 @@ fi
# Build ReactOS # Build ReactOS
cd "${REPODIR}" || exit 1 cd "${REPODIR}" || exit 1
./configure.sh -DENABLE_ROSAPPS=1 -DENABLE_WALLPAPERS=1 || exit 1 ./configure.sh -DENABLE_ROSAPPS=1 -DENABLE_WALLPAPERS=1 || exit 1
cd "${REPODIR}/${OUTPUTDIR}/reactos" || exit 1 cd "${REPODIR}/${OUTPUTDIR}" || exit 1
ninja bootcd || exit 1 ninja bootcd || exit 1
ninja livecd || exit 1 ninja livecd || exit 1