diff options
author | Thanos Apollo <[email protected]> | 2023-11-22 15:28:48 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-11-22 15:28:48 +0200 |
commit | 6923eb7834fcd59d01181c70a4c3420cab27455a (patch) | |
tree | f7ee3ff19787e374261fd658edce390a3a384667 /yeetube-mpv.el | |
parent | de9eebfc28e504a92d8ef5057001d183be8f7bbf (diff) |
yeetube-mpv:(check) Improve error message & use `unless`
There is no need for more specific error messages (via pcase).
Diffstat (limited to 'yeetube-mpv.el')
-rw-r--r-- | yeetube-mpv.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yeetube-mpv.el b/yeetube-mpv.el index 24a10a1..a24e544 100644 --- a/yeetube-mpv.el +++ b/yeetube-mpv.el @@ -36,9 +36,9 @@ (defun yeetube-mpv-check () "Check if mpv and yt-dlp is installed." - (pcase (and (executable-find "mpv") - (executable-find "yt-dlp")) - (`nil (error "Unable to play video. Please install `yt-dlp' and `mpv'")))) + (unless (and (executable-find "mpv") + (executable-find "yt-dlp")) + (error "Unable to play video. Please install `yt-dlp' and `mpv'"))) (defun yeetube-mpv-process (command) "Start yeetube process for shell COMMAND." |