This repository has been archived on 2020-03-22. You can view files and clone it, but cannot push or open issues/pull-requests.
ThatMinecraftLauncher/devtools/fake_java.py

13 lines
244 B
Python
Raw Permalink Normal View History

2019-08-03 00:41:56 +02:00
#!/usr/bin/python2
import sys
first_argument=True
out=open("fake_java_out.txt", "w")
2019-08-05 00:48:37 +02:00
for element in range(len(sys.argv)):
2019-08-03 00:41:56 +02:00
out.write(sys.argv[element])
first_argument=False
if not first_argument:
out.write(" ")
out.close()