Skip to content

Commit 1329c2f

Browse files
committed
Nullable fix
1 parent 86d0d1f commit 1329c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BuiltInTools/dotnet-watch/EnvironmentVariablesBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void SetVariable(string name, string value)
6060

6161
public void ConfigureProcess(ProcessSpec processSpec)
6262
{
63-
processSpec.Arguments = [.. GetCommandLineDirectives(), .. processSpec.Arguments];
63+
processSpec.Arguments = [.. GetCommandLineDirectives(), .. processSpec.Arguments ?? []];
6464
AddToEnvironment(processSpec.EnvironmentVariables);
6565
}
6666

0 commit comments

Comments
 (0)