forked from OSchip/llvm-project
utils/release/tag.sh: fix -revision vs. -rc check
llvm-svn: 226124
This commit is contained in:
parent
df230b21e3
commit
145bfa0d89
|
@ -117,7 +117,7 @@ tag_release=`echo $release | sed -e 's,\.,,g'`
|
|||
if [ "x$rc" = "x" ]; then
|
||||
tag_version
|
||||
else
|
||||
if [ "x$revision" != "x" ]; then
|
||||
if [ "$revision" != "HEAD" ]; then
|
||||
echo "error: cannot use -revision with -rc"
|
||||
echo
|
||||
usage
|
||||
|
|
Loading…
Reference in New Issue