diff options
author | kuba6000 <kuba.123123.6000@gmail.com> | 2023-01-03 22:05:50 +0100 |
---|---|---|
committer | kuba6000 <kuba.123123.6000@gmail.com> | 2023-01-03 22:05:50 +0100 |
commit | 9bdc955dd4d5f8c2b51dfcc44277bfb7a5b4c96e (patch) | |
tree | c8a041c1abaf6900a20b46c61227d6a0a289582e | |
parent | 4cd215080705a57f88f996a1c6e81a7a33e55059 (diff) | |
download | GT5-Unofficial-9bdc955dd4d5f8c2b51dfcc44277bfb7a5b4c96e.tar.gz GT5-Unofficial-9bdc955dd4d5f8c2b51dfcc44277bfb7a5b4c96e.tar.bz2 GT5-Unofficial-9bdc955dd4d5f8c2b51dfcc44277bfb7a5b4c96e.zip |
Update build script
-rw-r--r-- | build.gradle | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index 24091b4bc7..fa88ae1be7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1670779107 +//version: 1671313514 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -47,7 +47,7 @@ buildscript { dependencies { //Overwrite the current ASM version to fix shading newer than java 8 applicatations. classpath 'org.ow2.asm:asm-debug-all-custom:5.0.3' - classpath 'net.minecraftforge.gradle:ForgeGradle:1.2.11' + classpath 'net.minecraftforge.gradle:ForgeGradle:1.2.13' } } plugins { @@ -280,7 +280,9 @@ minecraft { runDir = 'run' if (replaceGradleTokenInFile) { - replaceIn replaceGradleTokenInFile + for (f in replaceGradleTokenInFile.split(',')) { + replaceIn f + } if (gradleTokenModId) { replace gradleTokenModId, modId } |