mac controller: Make file copy a bit more verbose

This commit is contained in:
Hylke Bons 2017-09-09 16:52:46 +01:00
parent 2d6e103928
commit cb3223c267

View file

@ -47,10 +47,15 @@ namespace SparkleShare {
GitCommand.GitPath = Path.Combine (NSBundle.MainBundle.ResourcePath, "git", "libexec", "git-core", "git");
GitCommand.ExecPath = Path.Combine (NSBundle.MainBundle.ResourcePath, "git", "libexec", "git-core");
File.Copy (Path.Combine (GitCommand.ExecPath, "git-lfs"), Path.Combine (Config.BinPath, "git-lfs"), true);
bool overwite = true;
File.Copy (
Path.Combine (GitCommand.ExecPath, "git-lfs"),
Path.Combine (Config.BinPath, "git-lfs"),
overwite);
}
public override void Initialize ()
{
base.Initialize ();