(layout config.Layout, store *config.ConfigStore)
| 57 | } |
| 58 | |
| 59 | func systemKeyringOpenOptions(layout config.Layout, store *config.ConfigStore) secrets.OpenOptions { |
| 60 | return secrets.OpenOptionsFromLookup( |
| 61 | layout, |
| 62 | store, |
| 63 | os.LookupEnv, |
| 64 | goruntime.GOOS, |
| 65 | termutil.IsTerminal(os.Stdin), |
| 66 | ) |
| 67 | } |
| 68 | |
| 69 | func normalizedRuntime(runtime *app.Runtime) *app.Runtime { |
| 70 | defaults := newDefaultRuntime() |