diff options
Diffstat (limited to 'extra/rest_client.rb')
-rw-r--r-- | extra/rest_client.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/rest_client.rb b/extra/rest_client.rb index 5809457..90a64e4 100644 --- a/extra/rest_client.rb +++ b/extra/rest_client.rb @@ -6,7 +6,7 @@ module Oxidized require 'asetus' class Config - Root = File.join ENV['HOME'], '.config', 'oxidized' + Root = Root = ENV['OXIDIZED_HOME'] || File.join(ENV['HOME'], '.config', 'oxidized') end CFGS = Asetus.new :name=>'oxidized', :load=>false, :key_to_s=>true @@ -21,7 +21,7 @@ module Oxidized end restcfg = CFG.rest - if ! restcfg.match(/^http:\/\//) + unless restcfg.match(/^http:\/\//) restcfg.insert(0, 'http://') end |