summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2015-11-10 19:31:25 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2015-11-10 19:52:04 +0900
commit5b315c4d7119666a207bcf09624be3ea52750a82 (patch)
treea6b52d61bd131ac8f9feff882a6409b7bf7c8088
parent37ebbacd09145fa6bbaf54dac2a211a5d83f01a5 (diff)
downloadlorry-5b315c4d7119666a207bcf09624be3ea52750a82.tar.gz
Documenting the "zip" type in README
Change-Id: I55e6fd73d39b0cf0e20da27a99ddcced5b5b4063
-rw-r--r--README15
1 files changed, 15 insertions, 0 deletions
diff --git a/README b/README
index ad6cb9a..bcb8add 100644
--- a/README
+++ b/README
@@ -202,6 +202,21 @@ NOTE: tarball imports are unlikely to give the same commit SHA1 but the tree
SHA1 inside (which is what is used for artifact cache IDs) should remain
stable.
+### Zip
+
+Lorry can import a zip file fetched from a URL. The contents will be
+extracted in place and committed directly to master. The new commit will
+be tagged with the basename of the imported zip file (e.g. docbook-xml-4.5.zip
+will be tagged as 'docbook-xml-4.5')
+
+ {
+ "docbook-xml": {
+ "type": "zip",
+ "url": "http://www.docbook.org/xml/4.5/docbook-xml-4.5.zip"
+ }
+ }
+
+
Tips
----