[bitbake-devel] exec_func_shell shell script exit

Andre McCurdy armccurdy at gmail.com
Wed Jul 15 09:07:30 UTC 2015


exec_func_shell currently adds this to the end of every shell script:

  ret=$?
  trap '' 0
  exit $?

Should that be:

  ret=$?
  trap '' 0
  exit $ret

?



More information about the bitbake-devel mailing list