Skip to content
Snippets Groups Projects
Commit 881940fc authored by Stanley Goldman's avatar Stanley Goldman
Browse files

Changing `git lfs init` to `git lfs install`

parent 5edeff30
No related branches found
No related tags found
No related merge requests found
......@@ -39,10 +39,10 @@ namespace GitHub.Unity
return initTask.RunAsync(token)
.ContinueWith(_ =>
{
Logger.Trace("LFS init");
Logger.Trace("LFS install");
var t = new GitInitTask(environment, processManager, null);
t.SetArguments("lfs init");
t.SetArguments("lfs install");
return t.RunAsync(token);
}, token, TaskContinuationOptions.NotOnCanceled | TaskContinuationOptions.NotOnFaulted, TaskScheduler.Default)
.ContinueWith(_ =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment