Phil Beauvoir

Results 793 comments of Phil Beauvoir

Which version of the the Model Repo Plugin?

Why is "Windows Host" Subprocess running under Archi? I dont's understand what all the Bash and other stuff has to do with this. Is this problem only on this machine...

OK, I found out that JGit sometimes invokes bash to find global git settings: https://www.eclipse.org/forums/index.php/t/1031740/ Perhaps it is getting stuck here. Need to investigate why.

Looking at that JGit code... If JGit can't find a native git executable in system PATH it then looks for "bash" in the system PATH. If it finds "bash" it...

I've filed a bug report for JGit: https://bugs.eclipse.org/bugs/show_bug.cgi?id=532723

@slopez31 You could workaround this by: 1. Open Control Panel, "Programs and Features", "Turn Windows features on or off" 2. In the dialog untick "Windows Subsystem for Linux" 3. Reboot.

Or install git and ensure it's on the PATH. The ideal solution is the JGit guys remove the dumb "search for bash" thing.

The code in JGit to determine whether git is installed is simply to try and find the global git config file (if it exists). Searching for *any* "bash.exe" on the...

And I can't even inject my own FS_Win32 class to override this because of their hard-coded FS factory: ``` public FS detect(Boolean cygwinUsed) { if (SystemReader.getInstance().isWindows()) { if (cygwinUsed ==...

Seems like this is a known issue for some time with JGit: https://bugs.eclipse.org/bugs/show_bug.cgi?id=515354 As is usual with Eclipse frameworks, it doesn't look like they'll fix it any time soon.