lib/cloudstack-client/helper.rb in cloudstack-cli-0.1.0 vs lib/cloudstack-client/helper.rb in cloudstack-cli-0.1.1
- old
+ new
@@ -2,11 +2,11 @@
class ConnectionHelper
def self.load_configuration(config_file)
begin
return YAML::load(IO.read(config_file))
rescue Exception => e
- $stderr.puts "Can't find the config file '#{config_file}'"
- $stderr.puts "Please see https://bitbucket.org/swisstxt/cloudstack-cli under 'Setup'"
+ $stderr.puts "Can't find the config file #{config_file}."
+ $stderr.puts "To create a new configuration file run \"cs setup\"."
exit
end
end
end
end