From 30a35b9e10ed2c9cd862df68af10869b1187634d Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 17 Jun 2018 21:08:15 +0200 Subject: [PATCH] Changed error output if missing ffmpeg. --- AAXtoMP3 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AAXtoMP3 b/AAXtoMP3 index 1f667ba..5fdbf6c 100755 --- a/AAXtoMP3 +++ b/AAXtoMP3 @@ -12,8 +12,7 @@ GREP=$(grep --version | grep -q GNU && echo "grep" || echo "ggrep") if ! [ -x "$(command -v ffmpeg)" ] then - echo "Please make sure that ffplay is installed and in your PATH." - echo "This is usually installed as a part of the ffmpeg package." + echo "Please make sure that ffmpeg is installed and in your PATH." exit 1 fi