This commit is contained in:
leo 2021-08-04 19:11:22 +08:00
parent d7290a9cf6
commit 78bb68b82e
3 changed files with 16 additions and 7 deletions

View file

@ -17,7 +17,7 @@ namespace SourceGit.Commands {
rs = rs.Trim();
if (Path.IsPathRooted(rs)) return rs;
return Path.Combine(Cwd, rs);
return Path.GetFullPath(Path.Combine(Cwd, rs));
}
}
}