Last change
on this file since 532 was
483,
checked in by hendrikvanantwerpen, 11 years ago
|
Added Dojo 1.9.3 release.
|
-
Property svn:executable set to
*
|
File size:
1.4 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | #version should be something like 0.9.0beta or 0.9.0 |
---|
4 | name=$1 |
---|
5 | #The svn revision number to use for tag. Should be a number, like 11203 |
---|
6 | svnRevision=$2 |
---|
7 | |
---|
8 | #If no svnRevision number, get the latest one from he repo. |
---|
9 | if [ "$svnRevision" = "" ]; then |
---|
10 | svnRevision=`svn info http://svn.dojotoolkit.org/src/util/trunk/buildscripts/build_release.sh | grep Revision | sed 's/Revision: //'` |
---|
11 | fi |
---|
12 | |
---|
13 | svn mkdir -m "Using r$svnRevision to create a branch named $name." https://svn.dojotoolkit.org/src/branches/$name |
---|
14 | svn copy -r $svnRevision https://svn.dojotoolkit.org/src/dojo/trunk https://svn.dojotoolkit.org/src/branches/$name/dojo -m "Using r$svnRevision to create a branch named $name." |
---|
15 | svn copy -r $svnRevision https://svn.dojotoolkit.org/src/dijit/trunk https://svn.dojotoolkit.org/src/branches/$name/dijit -m "Using r$svnRevision to create a branch named $name." |
---|
16 | svn copy -r $svnRevision https://svn.dojotoolkit.org/src/dojox/trunk https://svn.dojotoolkit.org/src/branches/$name/dojox -m "Using r$svnRevision to create a branch named $name." |
---|
17 | svn copy -r $svnRevision https://svn.dojotoolkit.org/src/util/trunk https://svn.dojotoolkit.org/src/branches/$name/util -m "Using r$svnRevision to create a branch named $name." |
---|
18 | svn copy -r $svnRevision https://svn.dojotoolkit.org/src/demos/trunk https://svn.dojotoolkit.org/src/branches/$name/demos -m "Using r$svnRevision to create a branch named $name." |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.