Merge pull request #5208 from livarcocc/fix_build_script
Removing -- separator from dotnet publish task. Fixes CI.
This commit is contained in:
commit
05b448944c
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(MSBuildArgs))
|
if (!string.IsNullOrEmpty(MSBuildArgs))
|
||||||
{
|
{
|
||||||
return $"-- {MSBuildArgs}";
|
return $"{MSBuildArgs}";
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue