mirror of
https://github.com/reactos/Release_Engineering.git
synced 2024-11-26 21:30:31 +00:00
[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:
parent
25707f1cf2
commit
5995c2abaf
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user