Skip to content

Commit

Permalink
Fix Release_ISOs to account for the configure.sh change in 53ce7d4370…
Browse files Browse the repository at this point in the history
…d2dbcce0217b12d8a93d556a36a55b
  • Loading branch information
ColinFinck committed Apr 10, 2019
1 parent c4a58e5 commit c621dfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Release_Configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Release_ISOs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c621dfd

Please sign in to comment.