[RELEASE_ENGINEERING]

- Fix the echo commands (strings should preferably be inside quote marks, and this is mandatory when the string has e.g. parentheses or sub-quotes inside it).
- Add terminating newlines in the Readme.txt and in the script files.

Patch by Hermès
Note to myself: Better test your changes next time, even small one-liner changes of an echo command..

svn path=/trunk/Release_Engineering/; revision=2260
This commit is contained in:
Colin Finck 2016-01-28 08:01:23 +00:00
parent 25707f1cf2
commit 5995c2abaf
8 changed files with 12 additions and 12 deletions

View File

@ -4,7 +4,7 @@
# Sanity checks
if [ "$ROS_ARCH" = "" ]; then
echo Please run this script inside RosBE!
echo "Please run this script inside RosBE!"
exit 1
fi
@ -15,14 +15,14 @@ echo
# Ask for the version
while [ "$version" = "" ]; do
echo What ReactOS version number do you want to release? (e.g. "0.4.0" or "0.4.0-RC1")
echo "What ReactOS version number do you want to release? (e.g. \"0.4.0\" or \"0.4.0-RC1\")"
read version
echo
done
# Ask for the branch name
while [ "$branch_name" = "" ]; do
echo What is the name of the SVN branch? (e.g. "ros-branch-0_4_0")
echo "What is the name of the SVN branch? (e.g. \"ros-branch-0_4_0\")"
read branch_name
echo
done

View File

@ -4,12 +4,12 @@
# Sanity checks
if ! source ./Release_Config; then
echo Please run Release_Configure first!
echo "Please run Release_Configure first!"
exit 1
fi
if [ "$ROS_ARCH" = "" ]; then
echo Please run this script inside RosBE!
echo "Please run this script inside RosBE!"
exit 1
fi

View File

@ -4,12 +4,12 @@
# Sanity checks
if ! source ./Release_Config; then
echo Please run Release_Configure first!
echo "Please run Release_Configure first!"
exit 1
fi
if [ "$ROS_ARCH" = "" ]; then
echo Please run this script inside RosBE!
echo "Please run this script inside RosBE!"
exit 1
fi