Skip to content
Advertisement

Why is Git Bash not using the correct Java path as defined in the PATH environment variable?

In an instance of Git Bash, typing in java -version gives me:

Error: could not open 'C:Program Files (x86)Javajre7libi386jvm.cfg'

However, my actual Java path is in D:Program FilesJavajdk1.8.0_45bin. This is shown in my %PATH% variable if I type in either echo $PATH or env | grep PATH.

Where is Git Bash getting this nonexistent Java path from?

P.S.

To add on to this, running java -version in the Command Prompt gives me the correct output:

JavaScript

Advertisement

Answer

Check if you have some old java.exe, javaw.exe, javaws.exe in the c:/windows/system32 folder, as mentioned in “Java path..Error of jvm.cfg“.

I just checked with Git 2.6.3 on Windows, where I don’t have anything in c:/windows/system32, and the result is consistent between:

git bash:

JavaScript

and CMD:

JavaScript

Both report the same java at the same spot:

JavaScript

Conclusion: upgrade to the latest git for windows.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement