How To Change Dirty Water Texture?

The “problem” was that Github contains “only” the newest version, and I needed the 6.15.01 with Gradle build environment (or what’s it called). And shame on me, I really forgot that I can simply clone the repo and then rollback it to a specific commit—that’s what I’ve done now, but Gradle won’t compile the mod and spits me the error that it can’t zip default config pack (I can’t provide exact message right now). All I did is I cloned the repo, hard reset it to e02e9b01015e43dcd86f2bbae03fd86999a0b651 commit, and run Gradle like this: ./gradlew setupCIWorkspace assemble.


I’ve removed Gradle’s dotdir in my home directory and it compiled as normal.


Lol, I’ve just mixed up two repos. 6.15.01 doesn’t compile for me:

Execution failed for task ‘:defaultConfigPack’.
Could not create ZIP ‘./build/libs/gregtech_1.7.10-6.15.01-defaultConfigPack.zip’.

That’s a bit strange.

I’ve also tried replacing Zip with Tar in build.gradle, but it fails in the exactly same way.

task defaultConfigPack(type: Tar) {
	from('./.defaultconfigs/')
	include('**/')
	classifier = 'defaultConfigPack'
	destinationDir = new File('./build/libs/')
}

Execution failed for task ‘:defaultConfigPack’.
Could not create TAR ‘./build/libs/gregtech_1.7.10-6.15.01-dirty-defaultConfigPack.tar’.

2 Likes