1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
package reporters
import "runtime"
type intellij struct{}
// NewIntelliJReporter creates a new reporter for IntelliJ.
func NewIntelliJReporter() Reporter {
return &intellij{}
}
func (s *intellij) Report(approved, received string) bool {
xs := []string{"diff", received, approved}
var programName string
switch runtime.GOOS {
case "windows":
programName = "C:/Program Files (x86)/JetBrains/IntelliJ IDEA 2016/bin/idea.exe"
case "darwin":
programName = "/Applications/IntelliJ IDEA.app/Contents/MacOS/idea"
}
return launchProgram(programName, approved, xs...)
}
|