diff options
author | Joe Rayhawk <jrayhawk+git@omgwallhack.org> | 2024-02-26 19:22:49 -0800 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@fairlystable.org> | 2024-02-27 03:24:55 -0800 |
commit | 11ac513d5bbf5de39dfeac312dee14b0ec61e0fe (patch) | |
tree | 1249ba19972a999ffdb38c1652f2f784b4afcd18 /crystal/bungmobott.cr | |
parent | 378924fc4f60dbc09c6eac744b1e8e68ecd488ea (diff) | |
download | twitchtools-11ac513d5bbf5de39dfeac312dee14b0ec61e0fe.tar.gz twitchtools-11ac513d5bbf5de39dfeac312dee14b0ec61e0fe.zip |
crystal/bungmobott: minor verbiage improvements
Diffstat (limited to 'crystal/bungmobott.cr')
-rw-r--r-- | crystal/bungmobott.cr | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crystal/bungmobott.cr b/crystal/bungmobott.cr index 8194eb6..8a60697 100644 --- a/crystal/bungmobott.cr +++ b/crystal/bungmobott.cr @@ -265,10 +265,10 @@ end # enable aws? if ! File.exists?( Path.home./("/.aws/credentials") ) # FIXME: work out where this is on Windows - STDERR.puts "Warning: #{Path.home}/.aws/credentials is missing; AWS voices disabled." + STDERR.puts "Warning: #{Path.home}/.aws/credentials is missing; direct AWS voices disabled." aws = false elsif ! Process.find_executable( "aws.exe" ) && ! Process.find_executable( "aws" ) - STDERR.puts "Warning: aws CLI executable is missing; AWS voices disabled." + STDERR.puts "Warning: aws CLI executable is missing; direct AWS voices disabled." aws = false else aws = true @@ -487,6 +487,7 @@ def generatevoicelistwin() if ( voices.size < 10 ) puts( "WARNING: Microsoft Speech Service voice count is suspiciously low." ) puts( "You may want to visit https://www.microsoft.com/en-us/download/details.aspx?id=27224" ) + puts( "or run #{PROGRAM_NAME} --install-mss-voices" ) end return voices end |