From 7fd765e22a1f2c908c2a4051a015bf390b3f58c7 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 19 Dec 2019 23:44:20 +0200 Subject: [PATCH] zip-archive type exists already --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0e2145f..b136e4e 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,9 @@ The base may contain a profile settings block which contains the non-default set ### File entries A file entry is a JSON object with at least the type of the entry. All file entries are parsed as equal, but some fields may be ignored when processing depending on the type of the file entry. The possible file entry fields are as follows: * `type` - Identifies the type of the file entry. Allowed types: - * `directory` - * `file` - * `zip-archive` (upcoming) + * `directory` - A directory that can contain multiple files and directories. + * `file` - A single file. + * `zip-archive` - A single zip file that is extracted and becomes a directory in the installation. * `filename` - The name to save the file to. Affects all types, will determine the unarchive directory name for archives. * `version` - The version of the file. Ignored by directories, used for comparison of other types for updating/downgrading. * `url` - The URL to download the file from. Ignored by directories.