Skip to content

Commit c621dfd

Browse files
committed
Fix Release_ISOs to account for the configure.sh change in 53ce7d4370d2dbcce0217b12d8a93d556a36a55b
1 parent c4a58e5 commit c621dfd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Release_Configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ echo "**************************************************************************
1818
echo
1919

2020
# Ask for the version
21-
echo "What ReactOS version do you want to release? (e.g. \"0.4.10\")"
21+
echo "What ReactOS version do you want to release? (e.g. \"0.4.12\")"
2222
echo "This will be used as suffix for the built files."
23-
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\")."
23+
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\")."
2424
read version
2525
echo
2626

2727
# Ask for the branch name
2828
while [ "$branch_name" = "" ]; do
29-
echo "What is the name of the Git branch? (e.g. \"ros-branch-0_4_0\")"
29+
echo "What is the name of the Git branch? (e.g. \"releases/0.4.12\")"
3030
read branch_name
3131
echo
3232
done

Release_ISOs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fi
4444
# Build ReactOS
4545
cd "${REPODIR}" || exit 1
4646
./configure.sh -DENABLE_ROSAPPS=1 -DENABLE_WALLPAPERS=1 || exit 1
47-
cd "${REPODIR}/${OUTPUTDIR}/reactos" || exit 1
47+
cd "${REPODIR}/${OUTPUTDIR}" || exit 1
4848
ninja bootcd || exit 1
4949
ninja livecd || exit 1
5050

0 commit comments

Comments
 (0)