revert changes (well that didn't work)

This commit is contained in:
Simon Gardling 2021-04-06 22:47:52 -04:00
parent 5e3f7d43c0
commit 803b6a4dce
2 changed files with 1 additions and 5 deletions

1
Jenkinsfile vendored
View File

@ -51,7 +51,6 @@ pipeline {
) {
withCredentials([usernamePassword(credentialsId: 'jenkins-deploy', usernameVariable: 'ORG_GRADLE_PROJECT_mavenUsername', passwordVariable: 'ORG_GRADLE_PROJECT_mavenPassword')]) {
sh '''
chmod +x mvn || true
./gradlew clean build paperclip publish
mkdir -p "./target"
basedir=$(pwd)

View File

@ -28,10 +28,7 @@ internal fun Project.createPaperclipTask(
"-Dvanillajar=$vanillaJarPath"
)
if (System.getProperty("os.name").startsWith("Windows")) paperclipCmd[0] = "mvn.cmd"
if (jenkins) {
paperclipCmd.add("-Dstyle.color=never")
paperclipCmd[0] = "./mvn"
}
if (jenkins) paperclipCmd.add("-Dstyle.color=never")
ensureSuccess(cmd(*paperclipCmd.toTypedArray(), dir = paperclipDir, printOut = true))
val paperClip = paperclipDir.resolve("assembly/target/paperclip-${toothpick.minecraftVersion}.jar")
val destination = rootProjectDir.resolve(toothpick.calcPaperclipName)