We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d3d0d commit cec429fCopy full SHA for cec429f
cmd/bashbrew/cmd-cat.go
@@ -56,6 +56,13 @@ func cmdCat(c *cli.Context) error {
56
"arch": func() string {
57
return arch
58
},
59
+ "gitCache": func() (string, error) {
60
+ err := ensureGitInit()
61
+ if err != nil {
62
+ return "", err
63
+ }
64
+ return gitCache(), nil
65
+ },
66
"ociPlatform": func(arch string) *architecture.OCIPlatform {
67
if ociArch, ok := architecture.SupportedArches[arch]; ok {
68
return &ociArch
0 commit comments