Skip to content

Commit 7a5b362

Browse files
committed
test: better err reporting when cant match remote
this should help debug test error on github actions
1 parent 197c417 commit 7a5b362

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

git.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func githubRepoDetect(path string) (owner, repo string, err error) {
8888
}
8989
owner, repo, ok := parseGithubRemote(remoteURL)
9090
if !ok {
91-
err = errors.New("non-matching remote url")
91+
err = errors.New("cannot pattern match remote url: " + remoteURL)
9292
}
9393
return
9494
}

0 commit comments

Comments
 (0)