diff --git a/music-sync.sh b/music-sync.sh index 75f649c..dfec240 100755 --- a/music-sync.sh +++ b/music-sync.sh @@ -37,17 +37,17 @@ CheckDeps() { # Check EyeD3 if [[ $convertart == true && ! $(eyeD3 --version 2>/dev/null) ]]; then VerboseOutput 5 "\`eyeD3 --version\` failed" - VerboseOutput 5 "Sorry, It seems that lame is not installed on your system" - VerboseOutput 5 "Please install lame from your repositories and make sure it is available in your \$PATH" + VerboseOutput 5 "Sorry, It seems that eyeD3 is not installed on your system" + VerboseOutput 5 "Please install eyeD3 from your repositories and make sure it is available in your \$PATH" VerboseOutput 5 "Otherwise disable albumart conversion" ExecTime exit 1 fi - # Check Imagemagick + # Check ImageMagick if [[ $convertart == true && ! $(convert --version 2>/dev/null) ]]; then VerboseOutput 5 "\`convert --version\` failed" - VerboseOutput 5 "Sorry, It seems that lame is not installed on your system" - VerboseOutput 5 "Please install lame from your repositories and make sure it is available in your \$PATH" + VerboseOutput 5 "Sorry, It seems that ImageMagick is not installed on your system" + VerboseOutput 5 "Please install ImageMagick from your repositories and make sure it is available in your \$PATH" VerboseOutput 5 "Otherwise disable albumart conversion" ExecTime exit 1 @@ -148,7 +148,7 @@ Usage() { echo " -d, --dest The destionation folder of the music" echo " -t, --temp The temporary cache for converted files (default: /tmp/converted)" echo " -c, --convert Convert files before syncing" - echo " -a, --convert-art Convert files before syncing" + echo " -a, --convert-art Convert album-art before syncing" echo " -v, --verbose <0-6> Set log level (default: 2)" echo " -h, --help Display this help text" echo ""