Skip to content

Commit

Permalink
Add the libc++ project to those we tag.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181371 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
isanbard committed May 7, 2013
1 parent 280e1df commit 5812cdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/release/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function usage() {

function tag_version() {
set -x
for proj in llvm cfe dragonegg test-suite compiler-rt ; do
for proj in llvm cfe dragonegg test-suite compiler-rt libcxx ; do
if svn ls $base_url/$proj/branches/release_$release > /dev/null 2>&1 ; then
if [ $rebranch = "no" ]; then
continue
Expand All @@ -49,7 +49,7 @@ function tag_version() {

function tag_release_candidate() {
set -x
for proj in llvm cfe dragonegg test-suite compiler-rt ; do
for proj in llvm cfe dragonegg test-suite compiler-rt libcxx ; 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
Expand Down

0 comments on commit 5812cdb

Please sign in to comment.