()
| 66 | } |
| 67 | |
| 68 | buildGitEnvironment() { |
| 69 | // Make sure we merge in the current environment so that git has access to |
| 70 | // important environment variables like $HOME. |
| 71 | return Object.assign({}, process.env, { |
| 72 | GIT_AUTHOR_NAME: 'Tomster', |
| 73 | GIT_AUTHOR_EMAIL: 'tomster@emberjs.com', |
| 74 | }); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | function isError(error) { |
no outgoing calls
no test coverage detected