()
| 201 | var superPrefixEnv = "GIT_INTERNAL_SUPER_PREFIX=" |
| 202 | |
| 203 | func fetchEnvironment() []string { |
| 204 | envMu.Lock() |
| 205 | defer envMu.Unlock() |
| 206 | |
| 207 | return fetchEnvironmentInternal() |
| 208 | } |
| 209 | |
| 210 | // fetchEnvironmentInternal should only be called from fetchEnvironment or |
| 211 | // ResetEnvironment, who will hold the required lock. |
no test coverage detected