Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 6239ad4

Browse files
authored
Merge branch 'master' into fixes/deleted-files-and-folders
2 parents 8f1763d + 968c158 commit 6239ad4

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/GitHub.Api/Git/Tasks/GitCommitTask.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ public GitCommitTask(string message, string body,
1616

1717
Name = TaskName;
1818
arguments = "commit ";
19-
arguments += String.Format(" -m \"{0}", message);
19+
arguments += String.Format(" -m \"{0}\"", message);
2020
if (!String.IsNullOrEmpty(body))
21-
arguments += String.Format("{0}{1}", Environment.NewLine, body);
22-
arguments += "\"";
21+
arguments += String.Format(" -m \"{0}\"", body);
2322
}
2423

2524
public override string ProcessArguments { get { return arguments; } }

src/UnityExtension/Assets/Editor/GitHub.Unity/EntryPoint.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private static void Initialize()
3737

3838
if (ApplicationCache.Instance.FirstRun)
3939
{
40-
Debug.Log("Initializing GitHub for Unity version " + ApplicationInfo.Version);
40+
Debug.Log("Initialized GitHub for Unity version " + ApplicationInfo.Version);
4141

4242
var oldLogPath = logPath.Parent.Combine(logPath.FileNameWithoutExtension + "-old" + logPath.ExtensionWithDot);
4343
try
@@ -53,7 +53,7 @@ private static void Initialize()
5353
Logging.Error(ex, "Error rotating log files");
5454
}
5555

56-
Debug.Log("Initializing GitHub for Unity log file: " + logPath);
56+
Debug.Log("Initialized GitHub for Unity log file: " + logPath);
5757
}
5858
Logging.LogAdapter = new FileLogAdapter(logPath);
5959
Logging.Info("Initializing GitHub for Unity version " + ApplicationInfo.Version);

0 commit comments

Comments
 (0)