From c621dfd21d0b2d514d07453c6f46747a3a06b88f Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Wed, 10 Apr 2019 18:18:12 +0200 Subject: [PATCH] Fix Release_ISOs to account for the configure.sh change in 53ce7d4370d2dbcce0217b12d8a93d556a36a55b --- Release_Configure | 6 +++--- Release_ISOs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Release_Configure b/Release_Configure index 397a11c..94f17aa 100755 --- a/Release_Configure +++ b/Release_Configure @@ -18,15 +18,15 @@ echo "************************************************************************** echo # 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 "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 echo # Ask for the branch name 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 echo done diff --git a/Release_ISOs b/Release_ISOs index 2270853..aae022f 100755 --- a/Release_ISOs +++ b/Release_ISOs @@ -44,7 +44,7 @@ fi # Build ReactOS cd "${REPODIR}" || 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 livecd || exit 1