Переглянути джерело

preview-kitty: fix crash on first file on dash (#636)

In the dash shell, when `exec < fifo` is interrupted by SIGCHLD, it exits.
So we replace it with `cat fifo |`.

Issue discussed in #614
master
lvgx GitHub 4 роки тому
джерело
коміт
58411446b7
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 4AEE18F83AFDEB23
1 змінених файлів з 3 додано та 1 видалено
  1. +3
    -1
      plugins/preview-kitty

+ 3
- 1
plugins/preview-kitty Переглянути файл

@@ -63,7 +63,9 @@ if [ "$PREVIEW_MODE" ] ; then

preview_file "$1"

exec < "$NNN_FIFO"
# use cat instead of 'exec <' to avoid issues with dash shell
# shellcheck disable=SC2002
cat "$NNN_FIFO" |\
while read -r selection ; do
preview_file "$selection"
done


Завантаження…
Відмінити
Зберегти