diff options
author | Nick Hilliard <nick@foobar.org> | 2015-12-27 18:19:36 +0000 |
---|---|---|
committer | Nick Hilliard <nick@foobar.org> | 2015-12-27 18:19:36 +0000 |
commit | 201c02551d96a070f8d55936aba350f772649465 (patch) | |
tree | c188329c2528681af35835391d5df9c208bab39f /lib/oxidized/output/file.rb | |
parent | 6a09fc99989d9282d938e7dc2d48a30ad6ef9ad6 (diff) |
expose git repo name and commit oid in hook mechanism and environment variables
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 |