From: Bill Wendling Date: Wed, 15 May 2013 21:36:46 +0000 (+0000) Subject: Add lldb and polly to the projects to tag. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=769b71a7f575f4c1636342954eb9d0b4af258b5f;p=oota-llvm.git Add lldb and polly to the projects to tag. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181925 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/release/tag.sh b/utils/release/tag.sh index c327174f811..5b20455eece 100755 --- a/utils/release/tag.sh +++ b/utils/release/tag.sh @@ -17,6 +17,7 @@ set -e release="" rc="" rebranch="no" +projects=llvm cfe dragonegg test-suite compiler-rt libcxx clang-tools-extra polly lldb base_url="https://llvm.org/svn/llvm-project" @@ -32,7 +33,7 @@ function usage() { function tag_version() { set -x - for proj in llvm cfe dragonegg test-suite compiler-rt libcxx clang-tools-extra ; do + for proj in $projects; do if svn ls $base_url/$proj/branches/release_$release > /dev/null 2>&1 ; then if [ $rebranch = "no" ]; then continue @@ -49,7 +50,7 @@ function tag_version() { function tag_release_candidate() { set -x - for proj in llvm cfe dragonegg test-suite compiler-rt libcxx clang-tools-extra ; do + for proj in $projects ; do if ! svn ls $base_url/$proj/tags/RELEASE_$release > /dev/null 2>&1 ; then svn mkdir -m "Creating release directory for release_$release." $base_url/$proj/tags/RELEASE_$release fi