diff options
Diffstat (limited to 'lib/leap_cli/util.rb')
-rw-r--r-- | lib/leap_cli/util.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/leap_cli/util.rb b/lib/leap_cli/util.rb index 0453b6d..b2a1dcf 100644 --- a/lib/leap_cli/util.rb +++ b/lib/leap_cli/util.rb @@ -111,13 +111,14 @@ module LeapCli def assert_config!(conf_path) value = nil - #begin + begin value = manager.instance_eval(conf_path) #rescue NoMethodError #rescue NameError - #end - assert! !value.nil? && value != "REQUIRED" do - log :missing, "required configuration value for #{conf_path}" + ensure + assert! !value.nil? && value != "REQUIRED" do + log :missing, "required configuration value for #{conf_path}" + end end end |