summaryrefslogtreecommitdiff
path: root/lorry.zip-importer
diff options
context:
space:
mode:
authorRichard Ipsum <richardipsum@fastmail.co.uk>2015-07-07 16:14:18 +0100
committerRichard Ipsum <richardipsum@fastmail.co.uk>2015-07-07 17:19:46 +0100
commit7a19a302773fc6c9e5911f53d36cc905f08bd531 (patch)
tree5ad30721eca0724f7ecad774661bd114ef958b3d /lorry.zip-importer
parentc08806278ac97da4d444fa96de047e3525093ce4 (diff)
downloadlorry-7a19a302773fc6c9e5911f53d36cc905f08bd531.tar.gz
Add zip support to lorry
Change-Id: I29368ddcc64c82bafcbb834c81db30018a144f64
Diffstat (limited to 'lorry.zip-importer')
-rwxr-xr-x[-rw-r--r--]lorry.zip-importer5
1 files changed, 4 insertions, 1 deletions
diff --git a/lorry.zip-importer b/lorry.zip-importer
index d12c296..c177d43 100644..100755
--- a/lorry.zip-importer
+++ b/lorry.zip-importer
@@ -1,5 +1,7 @@
#!/usr/bin/env python
+## Note: Modified for Baserock lorry.
+
## zip archive frontend for git-fast-import
##
## For example:
@@ -22,7 +24,8 @@ if len(argv) < 2:
print 'usage:', argv[0], '<zipfile>...'
exit(1)
-branch_ref = 'refs/heads/import-zips'
+branch_name = 'master'
+branch_ref = 'refs/heads/%s' % branch_name
committer_name = 'Z Ip Creator'
committer_email = 'zip@example.com'