Skip to content

Commit

Permalink
Pass platform name to -device to support device IDs that are IP addre…
Browse files Browse the repository at this point in the history
…sses
  • Loading branch information
hach-que committed Jan 1, 2025
1 parent a1f713a commit dba5311
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ await writer.WriteAgentNodeAsync(
};
if (!string.IsNullOrWhiteSpace(projectPackage.settings.BootTest.DeviceId))
{
arguments.Add($"-device={projectPackage.settings.BootTest.DeviceId}");
arguments.Add($"-device={projectPackage.settings.TargetPlatform}:{projectPackage.settings.BootTest.DeviceId}");
}
if (projectPackage.settings.BootTest.GauntletArguments != null)
{
Expand Down

0 comments on commit dba5311

Please sign in to comment.