From c75bc69ea2237288a11d10975e1304d69060c6ca Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Thu, 1 Oct 2015 19:40:26 -0700 Subject: [PATCH] Add warning string if no conf file exists --- lib/vmfloaty.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vmfloaty.rb b/lib/vmfloaty.rb index 9fead45..2c6e3ee 100644 --- a/lib/vmfloaty.rb +++ b/lib/vmfloaty.rb @@ -240,7 +240,7 @@ class Vmfloaty begin conf = YAML.load_file("#{Dir.home}/.vmfloaty.yml") rescue - STDERR.puts "There was no config file at #{Dir.home}/.vmfloaty.yml" + STDERR.puts "WARNING: There was no config file at #{Dir.home}/.vmfloaty.yml" end conf end