From bc7916737d5bde7a1dcdc4429350b3de28127ca5 Mon Sep 17 00:00:00 2001 From: homersimpsons Date: Fri, 31 Mar 2023 11:51:24 +0200 Subject: [PATCH] [Process] :memo: process: `create_new_console` is only for windows --- components/process.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/process.rst b/components/process.rst index 12ee096df4e..a0a312512bc 100644 --- a/components/process.rst +++ b/components/process.rst @@ -113,6 +113,11 @@ You can configure the options passed to the ``other_options`` argument of // this option allows a subprocess to continue running after the main script exited $process->setOptions(['create_new_console' => true]); +.. note:: + + The ``create_new_console`` option is only available on Windows! + + Using Features From the OS Shell --------------------------------