bugfix: catch fetcher.abs_path(nil)

This commit is contained in:
Dominik Richter 2016-02-24 16:07:00 +01:00
parent b75ba7d345
commit 40b3af86f8

View file

@ -49,6 +49,7 @@ module Inspec
end
def abs_path(file)
return nil if file.nil?
prefix + file
end