From 21c730298e13ccc25f62f8c337497268ebdf69ba Mon Sep 17 00:00:00 2001 From: Wayne's Bioinformatics Code Portal Date: Fri, 3 May 2019 11:14:25 -0400 Subject: [PATCH] tweak language to make clear `exec "$@"` works originally it was: "The last line must be ``exec "$@"`` equivalent." Seemed open to interpretation as I needed to deduce what the equivalent of that would be here. I think adding 'or' before equivalent shows that will work, but I assume other options exist? Or why note say "The last line must be ``exec "$@"``"? --- docs/source/config_files.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/config_files.rst b/docs/source/config_files.rst index 5af8e02a3..22435515f 100644 --- a/docs/source/config_files.rst +++ b/docs/source/config_files.rst @@ -179,7 +179,7 @@ A script that can contain simple commands to be run at runtime (as an `ENTRYPOINT `_ to the docker container). If you want this to be a shell script, make sure the first line is ``#!/bin/bash``. The last line must be ``exec "$@"`` -equivalent. +or equivalent. Use this to set environment variables that software installed in your container expects to be set. This script is executed each time your binder is started and