Fix remaining documentation errors

This commit is contained in:
Cyberboss
2017-10-19 12:32:39 -04:00
parent 1812841748
commit 601f39b269
11 changed files with 25 additions and 20 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ namespace TGCommandLine
}
protected override ExitCode Run(IList<string> parameters)
{
var result = Server.GetComponent<ITGRepository>().PushChangelog();
var result = Server.GetComponent<ITGRepository>().SynchronizePush();
if(result != null)
OutputProc(result);
return result == null ? ExitCode.Normal : ExitCode.ServerError;
+1 -1
View File
@@ -118,7 +118,7 @@ namespace TGCommandLine
OutputProc(res);
else
{
res = Repo.PushChangelog();
res = Repo.SynchronizePush();
if (res != null)
OutputProc(res);
}