( configPath: string, credentials: Credentials, runtimeFlags: RuntimeFlags )
| 398 | } |
| 399 | |
| 400 | function writeKeyringStorageCredentials( |
| 401 | configPath: string, |
| 402 | credentials: Credentials, |
| 403 | runtimeFlags: RuntimeFlags |
| 404 | ): CredentialsStorageLocation { |
| 405 | writeCredentialsToKeyring(configPath, credentials, runtimeFlags); |
| 406 | deleteCredentialsFile(configPath); |
| 407 | return 'keyring'; |
| 408 | } |
| 409 | |
| 410 | function writeAutoStorageCredentials( |
| 411 | configPath: string, |
no test coverage detected