Merging r226124:

------------------------------------------------------------------------
r226124 | hans | 2015-01-14 23:36:20 -0500 (Wed, 14 Jan 2015) | 2 lines

utils/release/tag.sh: fix -revision vs. -rc check

------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_36@237015 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tom Stellard 2015-05-11 19:46:44 +00:00
parent 6f6912321a
commit 75cfd0e052

View File

@ -117,7 +117,7 @@ tag_release=`echo $release | sed -e 's,\.,,g'`
if [ "x$rc" = "x" ]; then if [ "x$rc" = "x" ]; then
tag_version tag_version
else else
if [ "x$revision" != "x" ]; then if [ "$revision" != "HEAD" ]; then
echo "error: cannot use -revision with -rc" echo "error: cannot use -revision with -rc"
echo echo
usage usage