diff options
author | ytti <saku@ytti.fi> | 2015-12-28 14:30:25 +0200 |
---|---|---|
committer | ytti <saku@ytti.fi> | 2015-12-28 14:30:25 +0200 |
commit | bbae7ec0a0873d31087196579eeec736aea8b825 (patch) | |
tree | d5f7147b0944dbfd4bca08220225213e90581685 /lib/oxidized/output/file.rb | |
parent | 6a09fc99989d9282d938e7dc2d48a30ad6ef9ad6 (diff) | |
parent | 1300400441870f0caad1f01f447a4d887c67b330 (diff) |
Merge pull request #251 from nickhilliard/master
expose git repo name and commit oid in hook mechanism and env-vars
Diffstat (limited to 'lib/oxidized/output/file.rb')
-rw-r--r-- | lib/oxidized/output/file.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/oxidized/output/file.rb b/lib/oxidized/output/file.rb index d1a8c17..eb915c3 100644 --- a/lib/oxidized/output/file.rb +++ b/lib/oxidized/output/file.rb @@ -2,6 +2,8 @@ module Oxidized class OxidizedFile < Output require 'fileutils' + attr_reader :commitref + def initialize @cfg = CFG.output.file end @@ -22,6 +24,7 @@ class OxidizedFile < Output FileUtils.mkdir_p file file = File.join file, node open(file, 'w') { |fh| fh.write outputs.to_cfg } + @commitref = file end def fetch node, group |