diff options
| author | Aidan Skinner <aidan@apache.org> | 2009-08-24 08:42:28 +0000 |
|---|---|---|
| committer | Aidan Skinner <aidan@apache.org> | 2009-08-24 08:42:28 +0000 |
| commit | 9ee0122456b1ae31cf6c3aaea213c81df0fcb3ec (patch) | |
| tree | ecbf6f55f6a3115e8b01af2f737413e054cc68c1 | |
| parent | dcc69a03d518d17bd413d0f4119ea768faa15dfa (diff) | |
| download | qpid-python-9ee0122456b1ae31cf6c3aaea213c81df0fcb3ec.tar.gz | |
Use co -r instead of URL@REV
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@807124 13f79535-47bb-0310-9956-ffa450edef68
| -rwxr-xr-x | buildtools/buildCreator/buildCreator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/buildCreator/buildCreator.py b/buildtools/buildCreator/buildCreator.py index 0eae0b5422..6b9fc3c68e 100755 --- a/buildtools/buildCreator/buildCreator.py +++ b/buildtools/buildCreator/buildCreator.py @@ -1112,7 +1112,7 @@ def downloadSource(source, destination): command = SVN_BIN+" co "+url+" "+targetdir if (source.getElementsByTagName(REVISION).length > 0): revision = getValue(source.getElementsByTagName(REVISION)[0]) - command = SVN_BIN+" co "+url+"@"+revision+" "+targetdir + command = SVN_BIN+" co -r"+revision+" "+url+" "+targetdir else: if (type == HTTP): command = WGET_BIN+" --no-directories -P "+targetdir+" "+url |
