diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-22 07:35:53 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-22 07:35:55 +0000 |
commit | 01707c746f1b0ade415d033fdef679c227e01b7a (patch) | |
tree | 18652cf41968a43a4e66e8165f960cd171f7706a /%HOME%/.config/nnn/plugins/myfzcd | |
parent | .profile: add the normal sed to PATH on macOS (diff) | |
download | linux-home-01707c746f1b0ade415d033fdef679c227e01b7a.tar.gz linux-home-01707c746f1b0ade415d033fdef679c227e01b7a.zip |
ignore unsupported inherit_errexit
I have a really ancient machine with an even more ancient version of
bash that doesn't support inherit_errexit. Ignore for now, put it back
later.
Diffstat (limited to '%HOME%/.config/nnn/plugins/myfzcd')
-rwxr-xr-x | %HOME%/.config/nnn/plugins/myfzcd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/%HOME%/.config/nnn/plugins/myfzcd b/%HOME%/.config/nnn/plugins/myfzcd index 30b5ebe..925849f 100755 --- a/%HOME%/.config/nnn/plugins/myfzcd +++ b/%HOME%/.config/nnn/plugins/myfzcd @@ -3,7 +3,8 @@ # Like the fzcd plugin, but better. set -o errexit -o pipefail -shopt -s inherit_errexit lastpipe +shopt -s inherit_errexit 2> /dev/null || true +shopt -s lastpipe if command -v fzf > /dev/null 2>&1; then sel="$( fzf )" |