diff options
author | Jerome Doucet <jerdct@gmail.com> | 2018-07-14 15:19:56 +0200 |
---|---|---|
committer | Jerome Doucet <jerdct@gmail.com> | 2018-07-14 15:19:56 +0200 |
commit | 54d8c38fd63feefe6c25c1ac2945a6fc0bc7f16a (patch) | |
tree | 55bc8737682b853f2fc17f280bb19b553933b6ca /plumbing/transport/internal/common/common.go | |
parent | 3bd5e82b2512d85becae9677fa06b5a973fd4cfb (diff) | |
download | go-git-54d8c38fd63feefe6c25c1ac2945a6fc0bc7f16a.tar.gz |
plumbing/transport/internal: common, add support of Gogs for ErrRepositoryNotFound, avoiding to get an 'unknown error: '. Add some tests for existing supported services (github, gitlab, etc...) too.
Signed-off-by: Jerome Doucet <jerdct@gmail.com>
Diffstat (limited to 'plumbing/transport/internal/common/common.go')
-rw-r--r-- | plumbing/transport/internal/common/common.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plumbing/transport/internal/common/common.go b/plumbing/transport/internal/common/common.go index 8ec1ea5..00497f3 100644 --- a/plumbing/transport/internal/common/common.go +++ b/plumbing/transport/internal/common/common.go @@ -382,6 +382,7 @@ var ( gitProtocolNotFoundErr = "ERR \n Repository not found." gitProtocolNoSuchErr = "ERR no such repository" gitProtocolAccessDeniedErr = "ERR access denied" + gogsAccessDeniedErr = "Gogs: Repository does not exist or you do not have access" ) func isRepoNotFoundError(s string) bool { @@ -409,6 +410,10 @@ func isRepoNotFoundError(s string) bool { return true } + if strings.HasPrefix(s, gogsAccessDeniedErr) { + return true + } + return false } |