[ci skip] Add check for git repo (#8578)

This commit is contained in:
Jason 2022-11-20 11:26:20 -07:00 committed by GitHub
parent b95d4b28b8
commit 4a3ae59535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,25 @@
import java.util.Locale
if (!file(".git").isDirectory) {
val errorText = """
=====================[ ERROR ]=====================
The Paper project directory is not a properly cloned Git repository.
In order to build Paper from source you must clone
the Paper repository using Git, not download a code
zip from GitHub.
Built Paper jars are available for download at
https://papermc.io/downloads
See https://github.com/PaperMC/Paper/blob/master/CONTRIBUTING.md
for further information on building and modifying Paper.
===================================================
""".trimIndent()
error(errorText)
}
pluginManagement {
repositories {
gradlePluginPortal()