diff options
author | Matt Jankowski <matt@jankowski.online> | 2024-06-06 16:29:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 20:29:16 +0000 |
commit | 94d8d1094f32fcdd2372533efde9ad0e129020fc (patch) | |
tree | 021d3cf99b66fc88f3523e851307dce03fdbb102 /bin | |
parent | 12823908bbc101dc3106ae0fd1b804ef164390ac (diff) |
Provide richer failure information in `bin/setup` (#30581)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/setup b/bin/setup index 90700ac4f9a..5d9622151d9 100755 --- a/bin/setup +++ b/bin/setup @@ -5,7 +5,7 @@ require "fileutils" APP_ROOT = File.expand_path('..', __dir__) def system!(*args) - system(*args) || abort("\n== Command #{args} failed ==") + system(*args, exception: true) end FileUtils.chdir APP_ROOT do |