summaryrefslogtreecommitdiff
path: root/utils/git-svn
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-06-11 18:16:27 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-06-11 18:16:27 +0000
commit687a64222b4c87c825258d4dfeb1f0794e8cb300 (patch)
treef15e528223c9e06e4ed874e21ad41c2eb169030b /utils/git-svn
parent24eadf6f46cd3637ffe867648ce8eca7314115c6 (diff)
Notes
Diffstat (limited to 'utils/git-svn')
-rwxr-xr-xutils/git-svn/git-llvm6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/git-svn/git-llvm b/utils/git-svn/git-llvm
index 53c0b24ae2c85..bf234301f1321 100755
--- a/utils/git-svn/git-llvm
+++ b/utils/git-svn/git-llvm
@@ -42,7 +42,7 @@ else:
# It's *almost* a straightforward mapping from the monorepo to svn...
GIT_TO_SVN_DIR = {
- d: (d + '/trunk')
+ d: (d + '/branches/release_80')
for d in [
'clang-tools-extra',
'compiler-rt',
@@ -63,8 +63,8 @@ GIT_TO_SVN_DIR = {
'pstl',
]
}
-GIT_TO_SVN_DIR.update({'clang': 'cfe/trunk'})
-GIT_TO_SVN_DIR.update({'': 'monorepo-root/trunk'})
+GIT_TO_SVN_DIR.update({'clang': 'cfe/branches/release_80'})
+GIT_TO_SVN_DIR.update({'': 'monorepo-root/branches/release_80'})
VERBOSE = False
QUIET = False