(a, b)
| 840 | } |
| 841 | |
| 842 | function compareRemoteUrls (a, b) { |
| 843 | if (a === b) { |
| 844 | return true; |
| 845 | } |
| 846 | const aHttp = sshToHttpUrl(a); |
| 847 | const bHttp = sshToHttpUrl(b); |
| 848 | return aHttp === bHttp || a.toLowerCase() === b.toLowerCase(); |
| 849 | } |
| 850 | |
| 851 | function getFromToCommit (build, allowProduction) { |
| 852 | if (build.outputApplication && build.outputApplication.isPRBuild) |
no test coverage detected