From 8282e9e049b8589a4a765d49f6a784691ce3bd2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Sat, 1 Oct 2022 15:26:29 +0200 Subject: [PATCH] Clearly state that `install_command` only takes one command fixes #2433 --- docs/changelog/2433.doc.rst | 1 + docs/config.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 docs/changelog/2433.doc.rst diff --git a/docs/changelog/2433.doc.rst b/docs/changelog/2433.doc.rst new file mode 100644 index 000000000..4979ab787 --- /dev/null +++ b/docs/changelog/2433.doc.rst @@ -0,0 +1 @@ +Clarify that ``install_command`` only takes one command - by :user:`jugmac00` diff --git a/docs/config.rst b/docs/config.rst index 67bdb66b8..7ce8aa497 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -310,7 +310,7 @@ Complete list of settings that you can put into ``testenv*`` sections: .. note:: - You can also provide arbitrary commands to the ``install_command``. Please take care that these commands can be + You can also provide a single arbitrary command to the ``install_command``. Please take care that this command can be executed on the supported operating systems. When executing shell scripts we recommend to not specify the script directly but instead pass it to the appropriate shell as argument (e.g. prefer ``bash script.sh`` over ``script.sh``).