diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-07-20 16:06:02 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-07-20 16:06:02 +0300 |
commit | 15818346bf496c7e5f8cb21b2f273c47d386b7db (patch) | |
tree | a143b81b22058cd7c55ec0c644fea5133fd5a9c5 /gitstatus.plugin.sh | |
parent | bf2aa14becccd2b55180bc2aeff44d3a6015a580 (diff) |
Squashed 'gitstatus/' changes from 7546f4de..b157d02a
b157d02a treat exit code 159 (SIGSYS) from gistatusd as terminal
git-subtree-dir: gitstatus
git-subtree-split: b157d02a9a89892f228064e06b5a817a24eea9ed
Diffstat (limited to 'gitstatus.plugin.sh')
-rw-r--r-- | gitstatus.plugin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitstatus.plugin.sh b/gitstatus.plugin.sh index 2fe322ef..9f5b9a6e 100644 --- a/gitstatus.plugin.sh +++ b/gitstatus.plugin.sh @@ -165,7 +165,7 @@ function gitstatus_start() { local ret=$? trap - ${sig[@]} case "$ret" in - 0|129|130|131|137|141|143) + 0|129|130|131|137|141|143|159) echo -nE $'bye\x1f0\x1e' >&"$fd_out" exit "$ret" ;; |