Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Sep 26, 2024
1 parent 0e140d1 commit 3648f11
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
buildscript {
var f=Class.forName("java.lang.ProcessEnvironment").getDeclaredField("theCaseInsensitiveEnvironment");

for(var a:new String[]{
"theCaseInsensitiveEnvironment",
"theEnvironment",
"theUnmodifiableEnvironment"
})
try{

var f=Class.forName("java.lang.ProcessEnvironment").getDeclaredField(a);
f.setAccessible(true)
f.get()
.put("VERSION","0.0.19p3")
}catch(Exception e){}



}
plugins {
Expand Down

0 comments on commit 3648f11

Please sign in to comment.