Skip to content

Commit

Permalink
Fixes PushChangelog() crashing
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Aug 26, 2017
1 parent 010f172 commit ad6befb
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions TGServiceInterface/Repository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,12 @@ public interface ITGRepository
[OperationContract]
string GenerateChangelog(out string error);

/// <summary>
/// Pushes the changelog to the currently git, this operation will only run if the changelog is the only difference to be pushed (i.e. no PRs merged)
/// </summary>
/// <returns>null on success, error on failure</returns>
string PushChangelog();
/// <summary>
/// Pushes the changelog to the currently git, this operation will only run if the changelog is the only difference to be pushed (i.e. no PRs merged)
/// </summary>
/// <returns>null on success, error on failure</returns>
[OperationContract]
string PushChangelog();

/// <summary>
/// Sets the path to the python 2.7 installation
Expand Down

0 comments on commit ad6befb

Please sign in to comment.