Windows 7 environment variable not working in path

后端 未结 14 2138
[愿得一人]
[愿得一人] 2020-12-07 23:00

I am trying to set up some path using environment variable. I added an environment variable \"MAVEN_HOME\" with the value \"C:\\maven\". Then in the path I added \"%MAVEN_HO

14条回答
  •  春和景丽
    2020-12-07 23:37

    Check if there is a space character between the previous path and the next:

    Incorrect: c:\path1; c:\Maven\bin\; c:\path2\

    Correct: c:\path1;c:\Maven\bin\;c:\path2\

提交回复
热议问题