diff options
Diffstat (limited to 'bin/executable_mutt')
-rw-r--r--[-rwxr-xr-x] | bin/executable_mutt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/executable_mutt b/bin/executable_mutt index 78bd4ca..787d06e 100755..100644 --- a/bin/executable_mutt +++ b/bin/executable_mutt @@ -1,6 +1,6 @@ #!/bin/sh -if which neomutt; then +if command -v neomutt >/dev/null; then exec neomutt $@ else exec mutt $@ |