gitea/services/repository
wxiaoguang a6450494c3
Fix unclear `IsRepositoryExist` logic (#24374)
There was only one `IsRepositoryExist` function, it did: `has && isDir`

However it's not right, and it would cause 500 error when creating a new
repository if the dir exists.

Then, it was changed to `has || isDir`, it is still incorrect, it
affects the "adopt repo" logic.

To make the logic clear:

* IsRepositoryModelOrDirExist
* IsRepositoryModelExist
2023-04-28 14:14:26 -04:00
..
archiver
files
adopt.go Fix unclear `IsRepositoryExist` logic (#24374) 2023-04-28 14:14:26 -04:00
adopt_test.go
avatar.go
avatar_test.go
branch.go
cache.go
check.go
fork.go
fork_test.go
hooks.go
lfs.go
main_test.go
push.go
repository.go
repository_test.go
review.go
review_test.go
template.go
transfer.go
transfer_test.go