浏览代码

rbenv-rehash: remove superfluous trap signals

A trap on the special signal EXIT is executed before the shell
terminates. EXIT actually covers SIGINT and SIGTERM as well, and
we don't need any extra traps for them.

See bash(1) and "help trap" in bash.
pull/360/head^2
Mathias Lafeldt 14 年前
父节点
当前提交
0324b118ee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      libexec/rbenv-rehash

+ 1
- 1
libexec/rbenv-rehash 查看文件

@ -22,7 +22,7 @@ set +o noclobber
# If we were able to obtain a lock, register a trap to clean up the
# prototype shim when the process exits.
trap remove_prototype_shim SIGINT SIGTERM EXIT
trap remove_prototype_shim EXIT
remove_prototype_shim() {
rm -f "$PROTOTYPE_SHIM_PATH"

正在加载...
取消
保存