diff options
author | Florian Klink <flokli@flokli.de> | 2024-04-28T18·56+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-04-29T15·44+0000 |
commit | 298c6876cc28c427fc10503dab8fc154fcd02877 (patch) | |
tree | 1305efb7743b34c5bbb133606c59bf19a62498e4 /tvix/glue/src/fetchers | |
parent | 3548514d4aeff70277ab8c3b8e50c50dc305d703 (diff) |
docs(tvix/glue/fetchers): update docstring on Tarball r/8033
The tarball can also not be compressed. Change-Id: Idbf1b7168cc9a43826355e3cb8b4140f5f53d780 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11535 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/glue/src/fetchers')
-rw-r--r-- | tvix/glue/src/fetchers/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tvix/glue/src/fetchers/mod.rs b/tvix/glue/src/fetchers/mod.rs index 4b53d0fdac60..2dbb7498b7a9 100644 --- a/tvix/glue/src/fetchers/mod.rs +++ b/tvix/glue/src/fetchers/mod.rs @@ -31,7 +31,8 @@ pub enum Fetch { URL(Url, Option<NixHash>), /// Fetch a tarball from the given URL and unpack. - /// The file must be a tape archive (.tar) compressed with gzip, bzip2 or xz. + /// The file must be a tape archive (.tar), optionally compressed with gzip, + /// bzip2 or xz. /// The top-level path component of the files in the tarball is removed, /// so it is best if the tarball contains a single directory at top level. /// Optionally, a sha256 digest can be provided to verify the unpacked |