MCPcopy Index your code
hub / github.com/jetify-com/devbox / Output

Method Output

internal/lock/package.go:74–86  ·  view source on GitHub ↗
(name string)

Source from the content-addressed store, hash-verified

72}
73
74func (i *SystemInfo) Output(name string) (Output, error) {
75 if i == nil {
76 return Output{}, nil
77 }
78
79 for _, output := range i.Outputs {
80 if output.Name == name {
81 return output, nil
82 }
83 }
84
85 return Output{}, fmt.Errorf("Output %s not found", name)
86}
87
88func (i *SystemInfo) DefaultOutputs() []Output {
89 if i == nil {

Callers 15

saveToNixpkgsCommitFileFunction · 0.45
PrintDevEnvMethod · 0.45
StorePathFromHashPartFunction · 0.45
StorePathsAreInStoreFunction · 0.45
DaemonVersionFunction · 0.45
searchSystemFunction · 0.45
ProfileListFunction · 0.45
EvalPackageNameFunction · 0.45
PackageIsInsecureFunction · 0.45
ResolveFlakeFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected