Skip to content
Snippets Groups Projects
Unverified Commit 0369c0ae authored by Dustin Rodrigues's avatar Dustin Rodrigues Committed by GitHub
Browse files

Merge pull request #8188 from dtrodrigues/config-branch

config: include core branch in output
parents a605154b ad29ee45
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,10 @@ class SystemConfig
CoreTap.instance.git_last_commit || "never"
end
def core_tap_branch
CoreTap.instance.git_branch || "(none)"
end
def core_tap_origin
CoreTap.instance.remote || "(none)"
end
......@@ -116,6 +120,7 @@ class SystemConfig
f.puts "Core tap ORIGIN: #{core_tap_origin}"
f.puts "Core tap HEAD: #{core_tap_head}"
f.puts "Core tap last commit: #{core_tap_last_commit}"
f.puts "Core tap branch: #{core_tap_branch}"
else
f.puts "Core tap: N/A"
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment