The /docs directory is not part of the installed files after running composer. That makes the /README.rst link invalid.
Consequence
During a deployment, we have chosen to run composer in a pipeline. During that process, when the broken symlink is encountered by the aws cli (for example), we get No such file or directory and the deployment fails.
Mitigation / Workaround
Delete /README.rst right after running composer install
Proposed solution
Do no include any symlink in a library, a repo, etc.
In this case, replace README.rst with the actual file from the /docs directory.
(edit: Typos)
Problem
The
/docs
directory is not part of the installed files after runningcomposer
. That makes the/README.rst
link invalid.Consequence
During a deployment, we have chosen to run composer in a pipeline. During that process, when the broken symlink is encountered by the
aws cli
(for example), we getNo such file or directory
and the deployment fails.Mitigation / Workaround
Delete
/README.rst
right after runningcomposer install
Proposed solution
README.rst
with the actual file from the/docs
directory.