From c01731a1f52176a229aa3656a171323a4a90365e Mon Sep 17 00:00:00 2001 From: Jack Haden-Enneking Date: Tue, 27 Sep 2022 22:43:43 -0700 Subject: [PATCH] add installed time to `git info --json` output --- Library/Homebrew/formula.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index cdf29d45b8..8ff5906d37 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -2130,6 +2130,7 @@ class Formula "used_options" => tab.used_options.as_flags, "built_as_bottle" => tab.built_as_bottle, "poured_from_bottle" => tab.poured_from_bottle, + "time" => Time.at(tab.time).strftime("%Y-%m-%d %H:%M:%S"), "runtime_dependencies" => tab.runtime_dependencies, "installed_as_dependency" => tab.installed_as_dependency, "installed_on_request" => tab.installed_on_request,