kou commented on issue #38447:
URL: https://github.com/apache/arrow/issues/38447#issuecomment-1778604531

   Hmm. `set -e` doesn't work in a function...:
   
   ```console
   $ cat /tmp/b.sh
   set -e
   
   a()
   {
       false
       echo "a: failed after"
   }
   a || exit 1
   echo "top level"
   false
   echo "failed after"
   $ bash /tmp/b.sh
   a: failed after
   top level
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to