Skip to content

Commit

Permalink
Mention runpath in copy_file docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeda committed Nov 24, 2024
1 parent 968a97c commit dea0b1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ert/plugins/hook_implementations/forward_model_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ def documentation() -> Optional[ForwardModelStepDocumentation]:
return ForwardModelStepDocumentation(
category="utility.file_system",
description="""
The :code:`COPY_FILE` job will copy a file. If the :code:`<TO>`
argument has a directory component, that directory will be created.
This is an extension of the normal :code:`cp` command
which will *not* create directories in this way.
Copies file from :code:`<FROM>` to :code:`<TO>`. If no directory is specified in :code:`<TO>`,
the file will be copied to :code:`RUNPATH`. If the :code:`<TO>` argument includes a directory component,
that directory will be created. Unlike the standard :code:`cp` command, this job will automatically
create any missing directories in the destination path.
""",
examples="""
.. code-block:: bash
Expand Down

0 comments on commit dea0b1e

Please sign in to comment.