mirror of https://github.com/CGAL/cgal
In create_new_release, if --do-it is used with --no-testsuite, display a
special message in the tag message log (to reassure everybody).
This commit is contained in:
parent
710cb1172c
commit
31ff303ac8
|
|
@ -238,7 +238,10 @@ if [ -n "$DO_TAG" ]; then
|
|||
|
||||
# Now we tag.
|
||||
echo "Tagging ${SOURCES_DIR} with $release_name"
|
||||
svn cp -m "Internal release tag for $release_name" ${SOURCES_DIR} $SVNCGAL/tags/internal-releases/$release_name
|
||||
if [ -n "$NO_TESTSUITE" ]; then
|
||||
TAG_MSG_EXTRA=" (no testsuite)"
|
||||
fi
|
||||
svn cp -m "Internal release tag for $release_name$TAG_MSG_EXTRA" ${SOURCES_DIR} $SVNCGAL/tags/internal-releases/$release_name
|
||||
fi
|
||||
|
||||
# Build the SRPM
|
||||
|
|
|
|||
Loading…
Reference in New Issue