Skip to content

Commit

Permalink
test: better err reporting when cant match remote
Browse files Browse the repository at this point in the history
this should help debug test error on github actions
  • Loading branch information
mroth committed Sep 15, 2019
1 parent 197c417 commit 7a5b362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func githubRepoDetect(path string) (owner, repo string, err error) {
}
owner, repo, ok := parseGithubRemote(remoteURL)
if !ok {
err = errors.New("non-matching remote url")
err = errors.New("cannot pattern match remote url: " + remoteURL)
}
return
}
Expand Down

0 comments on commit 7a5b362

Please sign in to comment.