forked from BirmacherAkos/bitrise-step-xctest-html-report
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.go
55 lines (45 loc) · 1.33 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
"fmt"
"io"
"os"
"os/exec"
"path"
"strings"
"github.com/bitrise-io/go-utils/log"
)
func copy(sourcePath, outputDir string, errors *[]error) string {
source, err := os.Open(sourcePath)
if err != nil {
*errors = append(*errors, fmt.Errorf("Failed to open file, error: %s", err))
}
defer func() {
if cerr := source.Close(); cerr != nil {
*errors = append(*errors, fmt.Errorf("Failed to close file, error: %s", cerr))
}
}()
destinationPath := path.Join(outputDir, path.Base(sourcePath))
destination, err := os.Create(destinationPath)
if err != nil {
*errors = append(*errors, fmt.Errorf("Failed to open file, error: %s", err))
}
defer func() {
if cerr := destination.Close(); cerr != nil {
*errors = append(*errors, fmt.Errorf("Failed to close file, error: %s", cerr))
}
}()
if _, err := io.Copy(destination, source); err != nil {
*errors = append(*errors, fmt.Errorf("Failed to copy file, error: %s", err))
}
return destinationPath
}
func installedInPath(name string) bool {
cmd := exec.Command("which", name)
outBytes, err := cmd.Output()
return err == nil && strings.TrimSpace(string(outBytes)) != ""
}
func failf(format string, v ...interface{}) {
log.Errorf(format, v...)
log.Warnf("For more details you can enable the debug logs by turning on the verbose step input.")
os.Exit(1)
}