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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
293 changes: 0 additions & 293 deletions Gopkg.lock

This file was deleted.

48 changes: 0 additions & 48 deletions Gopkg.toml

This file was deleted.

15 changes: 0 additions & 15 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,3 @@ workflows:
cd ./_scripts
go run update_wrapper_versions.go
cd -

dep-update:
title: Dep update
description: |
Used for updating bitrise dependencies with dep
steps:
- script:
title: Dependency update
inputs:
- content: |-
#!/bin/bash
set -ex
go get -u -v github.com/golang/dep/cmd/dep
dep ensure -v
dep ensure -v -update
4 changes: 2 additions & 2 deletions cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (

"github.com/bitrise-io/bitrise-init/scanners/ios"
"github.com/bitrise-io/bitrise-init/scanners/xamarin"
"github.com/bitrise-io/bitrise-init/utility"
"github.com/bitrise-io/go-utils/colorstring"
"github.com/bitrise-io/go-utils/log"
"github.com/bitrise-io/go-utils/pathutil"
"github.com/bitrise-io/goinp/goinp"
)

Expand All @@ -30,7 +30,7 @@ func scanForProjectFiles(projType projectType) ([]string, error) {
return nil, err
}

fileList, err := utility.ListPathInDirSortedByComponents(searchDir, false)
fileList, err := pathutil.ListPathInDirSortedByComponents(searchDir, false)
if err != nil {
return nil, fmt.Errorf("failed to search for files in (%s), error: %s", searchDir, err)
}
Expand Down
16 changes: 16 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module github.com/bitrise-io/codesigndoc

go 1.16

require (
github.com/bitrise-io/bitrise-init v0.0.0-20210520122036-d213de321eb8
github.com/bitrise-io/go-utils v0.0.0-20210520073355-367fa34178f5
github.com/bitrise-io/go-xamarin v0.0.0-20210519123500-acea30f4caad
github.com/bitrise-io/go-xcode v0.0.0-20210520114025-bdbec53ee59f
github.com/bitrise-io/goinp v0.0.0-20210504152833-8559b0680ab1
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.1.3
github.com/stretchr/testify v1.7.0
)
Loading