()
| 411 | } |
| 412 | |
| 413 | func (d *Devbox) shellEnvHashKey() string { |
| 414 | // Don't make this a const so we don't use it by itself accidentally |
| 415 | return "__DEVBOX_SHELLENV_HASH_" + d.ProjectDirHash() |
| 416 | } |
| 417 | |
| 418 | func (d *Devbox) Info(ctx context.Context, pkg string, markdown bool) (string, error) { |
| 419 | ctx, task := trace.NewTask(ctx, "devboxInfo") |
no test coverage detected