Merge 2.1.2 into release/2.1

This commit is contained in:
Nate McMaster 2018-07-10 10:27:26 -07:00
commit b410a585f7
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace RepoTasks
{
if (Directory.Exists(source))
{
var trimmedSource = source.TrimEnd(new char[] { '\\', '/' });
var trimmedSource = source.TrimEnd(new []{ '\\', '/' });
Log.LogMessage(MessageImportance.High, $"Adding directory: {trimmedSource}");
archive.AddDirectory(trimmedSource, progress);
}