mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-03-06 12:20:56 +01:00
fix bug in mercurial configuration wizard on windows
This commit is contained in:
@@ -299,11 +299,11 @@ public class WindowsHgInstaller extends AbstractHgInstaller
|
||||
|
||||
if (path != null)
|
||||
{
|
||||
File file = new File(path);
|
||||
File file = new File(path, FILE_MERCURIAL_EXE);
|
||||
|
||||
if (!file.exists())
|
||||
if (file.exists())
|
||||
{
|
||||
installations.add(path);
|
||||
installations.add(file.getAbsolutePath());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user