In the rv6 bersion, the bump_version shell script contains this line:
if [ $OSTYPE = "cygwin32" ]; then
For this test to operate without error on systems that do not set $OSTYPE (such as the Solaris 2.6 system I am using) it is necessary to put quotes around $OSTYPE, like this:
if [ "$OSTYPE" = "cygwin32" ]; then
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In the rv6 bersion, the bump_version shell script contains this line:
if [ $OSTYPE = "cygwin32" ]; then
For this test to operate without error on systems that do not set $OSTYPE (such as the Solaris 2.6 system I am using) it is necessary to put quotes around $OSTYPE, like this:
if [ "$OSTYPE" = "cygwin32" ]; then