You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the Ruby 1.9->Ruby 2 upstream changes was that the handling of
file descriptors on exec calls had two changes in defaults:
- All non-primary FDs are closed by default
- All FDs have CLOEXEC/close_on_exec set:
http://ruby-doc.org/core-2.2.0/IO.html#method-i-close_on_exec-3DFixesformorer#3
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
strace shows a fd 15 with CLOEXEC flag and an exec to gpg with --status-fd=15
changing the shebang to ruby1.9.1 makes it work again
The text was updated successfully, but these errors were encountered: