From da9eb928cf0237172477dec330996914e0670e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szczepanik?= Date: Fri, 7 Jun 2024 12:45:34 +0200 Subject: [PATCH] docs: fix the singularity-calling script The instructions for creating the shell script to simplify calling singularity say "save it as icf-utils", but it seems that the provided code block is a mixture of the file content (starts with a hashbang) and a copy-paste snippet to create the file (ends with a redirection to icf-utils). This removes the seemingly incorrect redirection from the icf-utils shell script definition. --- docs/source/reference/container.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/reference/container.rst b/docs/source/reference/container.rst index 4617734..0a69f0f 100644 --- a/docs/source/reference/container.rst +++ b/docs/source/reference/container.rst @@ -27,7 +27,7 @@ and save it as ``icf-utils``: #!/bin/sh set -e -u - singularity run -B "$@" > icf-utils + singularity run -B "$@" The ``-B`` defines a bind path, making it accessible from within the container.