From 3f379351efcf59c5b951f9cb04cd575d9689a038 Mon Sep 17 00:00:00 2001 From: wheaney <42350981+wheaney@users.noreply.github.com> Date: Fri, 15 Dec 2023 21:02:27 -0800 Subject: [PATCH] Update internal setup script so it triggers failure during setup on non-zero exit codes --- vulkan/bin/setup | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vulkan/bin/setup b/vulkan/bin/setup index 18d249a..e3e9860 100755 --- a/vulkan/bin/setup +++ b/vulkan/bin/setup @@ -1,5 +1,7 @@ #!/usr/bin/env bash +set -e + # This script gets packaged with the release and should do the bulk of the setup work. This allows this setup to be tied # to a specific release of the code, and guarantees it will never run along-side newer or older binaries.