summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlorry4
-rwxr-xr-xtests/bzr-single-commit.script4
-rw-r--r--tests/bzr-single-commit.stdout2
3 files changed, 6 insertions, 4 deletions
diff --git a/lorry b/lorry
index b76ab13..a478ea9 100755
--- a/lorry
+++ b/lorry
@@ -220,7 +220,9 @@ class Lorry(cliapp.Application):
branchdir = os.path.join(bzrdir, branch)
self.progress('.. fast-exporting branch %s from bzr' % branch)
exports[branch] = os.path.join(dirname, 'fast-export' + branch)
- cmdline = ['bzr', 'fast-export', '--git-branch=' + branch, branchdir, exports[branch]]
+ gitbranch = 'master' if branch == 'trunk' else branch
+ cmdline = ['bzr', 'fast-export', '--git-branch=' + gitbranch,
+ branchdir, exports[branch]]
if os.path.exists(bzrmarks):
cmdline.append('--marks=' + bzrmarks)
else:
diff --git a/tests/bzr-single-commit.script b/tests/bzr-single-commit.script
index a870558..c9fb5db 100755
--- a/tests/bzr-single-commit.script
+++ b/tests/bzr-single-commit.script
@@ -35,8 +35,8 @@ workdir="$DATADIR/work-dir"
git show-ref | cut -d' ' -f2
# cat the test file
- git cat-file blob trunk:test.txt
+ git cat-file blob master:test.txt
# list the commit messages
- git log --pretty='%s' trunk
+ git log --pretty='%s' master
)
diff --git a/tests/bzr-single-commit.stdout b/tests/bzr-single-commit.stdout
index 37f9da3..eae50d1 100644
--- a/tests/bzr-single-commit.stdout
+++ b/tests/bzr-single-commit.stdout
@@ -1,3 +1,3 @@
-refs/heads/trunk
+refs/heads/master
first line
first commit