I set PowerShell as my default terminal in Android Studio settings after that I modified my PATH from inside the Android Studio Terminal (PowerShell) like:
$env:PATH = $env:PATH + "C:\SomePath"
However I ommited the ";" at the beginning of "C:\SomePath" by doing this now my last entry in the path looks like "C:\LastEntryC:\SomePath" what is wrong.
How to modify this entry from PowerShell to have "C:\LastEntry;C:\SomePath"?
I tried to change the PATH variable from the Windows Control Panel but it's different, It seems that the PATH in android studio is local to the IDE.