Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deployer skip_symlinks #3335

Merged
merged 2 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions reference/commands/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ Displays all the Conan built-in configurations. There are 2 groups:
tools.cmake.cmaketoolchain:user_toolchain: Inject existing user toolchains at the beginning of conan_toolchain.cmake
tools.cmake:cmake_program: Path to CMake executable
tools.compilation:verbosity: Verbosity of compilation tools if set. Possible values are 'quiet' and 'verbose'
tools.deployer:symlinks: Set to False to disable deployers copying symlinks
tools.env.virtualenv:powershell: If it is set to True it will generate powershell launchers if os=Windows
tools.files.download:retry: Number of retries in case of failure when downloading
tools.files.download:retry_wait: Seconds to wait between download attempts
Expand Down
8 changes: 8 additions & 0 deletions reference/extensions/deployers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ This deployer will output your dependencies in a tree folder such as:
See :ref:`the Conan stability<stability>` section for more information.


configuration
^^^^^^^^^^^^^

Both the ``full_deploy`` and the ``direct_deploy`` can define the conf ``tools.deployer:symlinks`` to ``False``
AbrilRBS marked this conversation as resolved.
Show resolved Hide resolved
to disable deployers copying symlinks. This can be convenient in systems that do not support symlinks and could fail
if deploying packages that contain symlinks.


Custom deployers
----------------

Expand Down