Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions lib/mix/lib/mix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,12 @@ defmodule Mix do
* `MIX_INSTALL_DIR` *(since v1.12.0)* - specifies directory where `Mix.install/2` keeps
install cache

* `MIX_OS_CONCURRENCY_LOCK` - when set to `0` or `false`, disables mix compilation locking.
* `MIX_OS_CONCURRENCY_LOCK` *(since v1.18.2)* - when set to `0` or `false`, disables mix compilation locking.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I am not sure if we use * around since in other places but if we do in some, that's ok, otherwqise please remove it :)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I followed the style from the line just above :)

While not recommended, this may be necessary in cases where hard links or TCP sockets are
not available. When opting for this behaviour, make sure to not start concurrent compilations
of the same project

* `MIX_OS_DEPS_COMPILE_PARTITION_COUNT` - when set to a number greater than 1, it enables
* `MIX_OS_DEPS_COMPILE_PARTITION_COUNT` *(since v1.19.0)* - when set to a number greater than 1, it enables
compilation of dependencies over multiple operating system processes. See `mix help deps.compile`
for more information

Expand Down
Loading