We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96fa79f commit d429577Copy full SHA for d429577
rlbot_gui/gui.py
@@ -401,7 +401,7 @@ def filter_hidden_bundles(bundles):
401
@eel.expose
402
def get_language_support():
403
java_return_code = os.system("java -version 2> nul")
404
- node_return_code = os.system("node --version > nul")
+ node_return_code = os.system("node --version 2> nul")
405
# Only bother returning iffy languages. No point in sending 'python': True
406
return {
407
'java': java_return_code == 0,
setup.py
@@ -1,6 +1,6 @@
1
import setuptools
2
3
-__version__ = '0.0.163'
+__version__ = '0.0.164'
4
5
with open("README.md", "r") as readme_file:
6
long_description = readme_file.read()
0 commit comments