Is it possible to automatically throw on errors? Similar to `set -e`: ```kotlin shell { throwOnNonZeroStatus() // or simply throwOnError() ? // will fail the script if the zip file is not present "unzip ${zipFile.absolutePath}"() } ```