Skip to content

Commit

Permalink
Update NuGetPack.cs
Browse files Browse the repository at this point in the history
Missing space after -External flag
  • Loading branch information
jntmp committed Jan 18, 2017
1 parent 3a17548 commit 48edcbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/MSBuild.Community.Tasks/NuGet/NuGetPack.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region Copyright © 2011 Paul Welter. All rights reserved.
#region Copyright © 2011 Paul Welter. All rights reserved.
/*
Copyright © 2005 Paul Welter. All rights reserved.
Copyright © 2005 Paul Welter. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -221,7 +221,7 @@ protected override string GenerateCommandLineCommands()
if (ForceEnglishOutput)
builder.AppendSwitch("-ForceEnglishOutput");

builder.AppendSwitchIfNotNull("-Exclude", Exclude);
builder.AppendSwitchIfNotNull("-Exclude ", Exclude);
builder.AppendSwitchIfNotNull("-Properties ", Properties);

return builder.ToString();
Expand Down Expand Up @@ -250,4 +250,4 @@ protected override void LogEventsFromTextOutput(string singleLine, MessageImport
OutputFilePath = outputFilePathMatch.Groups["filename"].Value;
}
}
}
}

0 comments on commit 48edcbc

Please sign in to comment.