Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 36 additions & 36 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cmd/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

log "github.com/Sirupsen/logrus"
"github.com/bitrise-io/go-utils/cmdex"
"github.com/bitrise-io/go-utils/colorstring"
"github.com/bitrise-io/go-utils/command"
"github.com/bitrise-io/go-utils/pathutil"
"github.com/bitrise-io/go-utils/sliceutil"
"github.com/bitrise-io/goinp/goinp"
Expand Down Expand Up @@ -151,7 +151,7 @@ func exportCodeSigningFiles(toolName, absExportOutputDirPath string, codeSigning

fmt.Println()
fmt.Printf(colorstring.Green("Exports finished")+" you can find the exported files at: %s\n", absExportOutputDirPath)
if err := cmdex.RunCommand("open", absExportOutputDirPath); err != nil {
if err := command.RunCommand("open", absExportOutputDirPath); err != nil {
log.Errorf("Failed to open the export directory in Finder: %s", absExportOutputDirPath)
}
fmt.Println("Opened the directory in Finder.")
Expand Down Expand Up @@ -327,7 +327,7 @@ func exportProvisioningProfiles(provProfileFileInfos []provprofile.ProvisioningP

exportFileName := provProfileExportFileName(aProvProfileFileInfo)
exportPth := filepath.Join(exportTargetDirPath, exportFileName)
if err := cmdex.RunCommand("cp", aProvProfileFileInfo.Path, exportPth); err != nil {
if err := command.RunCommand("cp", aProvProfileFileInfo.Path, exportPth); err != nil {
return fmt.Errorf("Failed to copy Provisioning Profile (from: %s) (to: %s), error: %s",
aProvProfileFileInfo.Path, exportPth, err)
}
Expand Down
4 changes: 2 additions & 2 deletions provprofile/provprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

plist "github.com/DHowett/go-plist"
log "github.com/Sirupsen/logrus"
"github.com/bitrise-io/go-utils/cmdex"
"github.com/bitrise-io/go-utils/command"
"github.com/bitrise-io/go-utils/maputil"
"github.com/bitrise-io/go-utils/pathutil"
"github.com/ryanuber/go-glob"
Expand Down Expand Up @@ -82,7 +82,7 @@ func (ppFileInfos ProvisioningProfileFileInfoModels) CollectTeamIDs() ([]string,

// CreateProvisioningProfileModelFromFile ...
func CreateProvisioningProfileModelFromFile(filePth string) (ProvisioningProfileModel, error) {
profileContent, err := cmdex.NewCommand("security", "cms", "-D", "-i", filePth).RunAndReturnTrimmedCombinedOutput()
profileContent, err := command.New("security", "cms", "-D", "-i", filePth).RunAndReturnTrimmedCombinedOutput()
if err != nil {
return ProvisioningProfileModel{},
fmt.Errorf("Failed to retrieve information about Provisioning Profile, error: %s",
Expand Down
5 changes: 5 additions & 0 deletions vendor/github.com/DHowett/go-plist/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading