diff --git a/source/_integrations/script.markdown b/source/_integrations/script.markdown index 9f7dbe592e4..e74ae03f9ef 100644 --- a/source/_integrations/script.markdown +++ b/source/_integrations/script.markdown @@ -203,14 +203,17 @@ script: ### Waiting for Script to Complete When calling a script "directly" (e.g., `script.NAME`) the calling script will wait for the called script to finish. +If any errors occur that cause the called script to abort, the calling script will be aborted as well. When calling a script (or multiple scripts) via the `script.turn_on` service the calling script does _not_ wait. It starts the scripts, in the order listed, and continues as soon as the last script is started. +Any errors that occur in the called scripts that cause them to abort will _not_ affect the calling script.