-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathios_outputs.go
40 lines (32 loc) · 1011 Bytes
/
ios_outputs.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
package main
import (
"path/filepath"
"strings"
"github.com/bitrise-io/go-utils/log"
"github.com/bitrise-io/go-utils/pathutil"
)
func getIosOutputCandidateDirsPaths(workDir string, target string, configuration string) []string {
targetPlatform := "iphonesimulator"
if target == "device" {
targetPlatform = "iphoneos"
}
// disable linting deprecated Title check SA1019
cordovaIOS7targetComponent := strings.Title(configuration) + "-" + targetPlatform //nolint:staticcheck
return []string{
filepath.Join(workDir, "platforms", "ios", "build", target), // cordova-ios <7
filepath.Join(workDir, "platforms", "ios", "build", cordovaIOS7targetComponent), // cordova-ios =>7
}
}
func findFirstExistingDir(candidateDirPaths []string) string {
for _, path := range candidateDirPaths {
exist, err := pathutil.IsDirExists(path)
if err != nil {
log.Warnf("Failed to check if dir (%s) exist: %s", path, err)
continue
}
if exist {
return path
}
}
return ""
}