diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-08-15 09:59:44 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-08-15 09:59:44 +0300 |
commit | ebfaae2ab665e747b368530a4788138b5ab05134 (patch) | |
tree | bc1e57d90e34d7f2ddfc3d7394d5ef8e96f6edd3 /gitstatus | |
parent | 7a0bf995c7bccd6a2ab40eeef3004db8d6976e00 (diff) | |
parent | f63d6a31c1348e304e40e4e0dcca750128ad2cfd (diff) |
Merge commit 'f63d6a31c1348e304e40e4e0dcca750128ad2cfd'
Diffstat (limited to 'gitstatus')
-rw-r--r-- | gitstatus/gitstatus.plugin.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gitstatus/gitstatus.plugin.sh b/gitstatus/gitstatus.plugin.sh index 9f5b9a6e..e0cd206d 100644 --- a/gitstatus/gitstatus.plugin.sh +++ b/gitstatus/gitstatus.plugin.sh @@ -125,7 +125,7 @@ function gitstatus_start() { ( local fd_in fd_out - exec {fd_in}<"$req_fifo" {fd_out}>"$resp_fifo" || exit + exec {fd_in}<"$req_fifo" {fd_out}>>"$resp_fifo" || exit echo "$BASHPID" >&"$fd_out" local _gitstatus_bash_daemon _gitstatus_bash_version _gitstatus_bash_downloaded @@ -197,8 +197,8 @@ function gitstatus_start() { ) & disown } 0</dev/null &>"$GITSTATUS_DAEMON_LOG" - exec {_GITSTATUS_REQ_FD}>"$req_fifo" {_GITSTATUS_RESP_FD}<"$resp_fifo" || return - command rm -f -- "$req_fifo" "$resp_fifo" || return + exec {_GITSTATUS_REQ_FD}>>"$req_fifo" {_GITSTATUS_RESP_FD}<"$resp_fifo" || return + command rm -f -- "$req_fifo" "$resp_fifo" || return [[ "$GITSTATUS_DAEMON_LOG" != /dev/null ]] || command rmdir -- "$tmpdir" 2>/dev/null IFS='' read -r -u $_GITSTATUS_RESP_FD GITSTATUS_DAEMON_PID || return |