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 (#119)
  • Loading branch information
hach-que authored Jan 1, 2025
1 parent e0fe734 commit bcd36a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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)
{

0 comments on commit bcd36a0

Please sign in to comment.