()
| 148 | } |
| 149 | |
| 150 | func sharedConfigFilesForDebug() []string { |
| 151 | if path := os.Getenv("AWS_CONFIG_FILE"); path != "" { |
| 152 | return []string{path} |
| 153 | } |
| 154 | return append([]string(nil), config.DefaultSharedConfigFiles...) |
| 155 | } |
| 156 | |
| 157 | func sharedCredentialsFilesForDebug() []string { |
| 158 | if path := os.Getenv("AWS_SHARED_CREDENTIALS_FILE"); path != "" { |
no outgoing calls
no test coverage detected