summaryrefslogtreecommitdiff
path: root/crystal/bungmobott.cr
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk+git@omgwallhack.org>2024-02-26 19:22:49 -0800
committerJoe Rayhawk <jrayhawk@fairlystable.org>2024-02-27 03:24:55 -0800
commit11ac513d5bbf5de39dfeac312dee14b0ec61e0fe (patch)
tree1249ba19972a999ffdb38c1652f2f784b4afcd18 /crystal/bungmobott.cr
parent378924fc4f60dbc09c6eac744b1e8e68ecd488ea (diff)
downloadtwitchtools-11ac513d5bbf5de39dfeac312dee14b0ec61e0fe.tar.gz
twitchtools-11ac513d5bbf5de39dfeac312dee14b0ec61e0fe.zip
crystal/bungmobott: minor verbiage improvements
Diffstat (limited to 'crystal/bungmobott.cr')
-rw-r--r--crystal/bungmobott.cr5
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