Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/client/opamArg.ml
Original file line number Diff line number Diff line change
Expand Up @@ -221,16 +221,16 @@ let environment_variables =
'download-command' value from the main config file.";
"NOCHECKSUMS", cli_original, (fun v -> NOCHECKSUMS (env_bool v)),
"enables option --no-checksums when available.";
"REQUIRECHECKSUMS", cli_original,
(fun v -> REQUIRECHECKSUMS (env_bool v)),
"Enables option `--require-checksums' when available \
(e.g. for `opam install').";
"REPOSITORYTARRING", cli_between cli2_2 cli2_5,
"REPOSITORYTARRING", cli_from cli2_2,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the removal of repository tarring moved to 6625 ?

(fun b -> REPOSITORYTARRING (env_bool b)),
"internally store the repositories as tar.gz files. This can be much \
faster on filesystems that don't cope well with scanning large trees \
but have good caching in /tmp. However this is slower in the \
general case.";
"REQUIRECHECKSUMS", cli_original,
(fun v -> REQUIRECHECKSUMS (env_bool v)),
"Enables option `--require-checksums' when available \
(e.g. for `opam install').";
"RETRIES", cli_original, (fun v -> RETRIES (env_int v)),
"sets the number of tries before failing downloads.";
"VALIDATIONHOOK", cli_original, (fun v -> VALIDATIONHOOK (env_string v)),
Expand Down