Skip to content

Commit

Permalink
Merge pull request #526 from WildernessLabs/bug/provision-id
Browse files Browse the repository at this point in the history
Uppercase user-supplied device ID
  • Loading branch information
adrianstevens authored Mar 14, 2024
2 parents 99e80dd + ecb1a8d commit ee976a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected override async ValueTask ExecuteCommand()
{
throw new CommandException("If a public key is provided, an `id` must also be provided");
}
provisioningID = SerialNumber;
provisioningID = SerialNumber.ToUpper();
provisioningName = Name ?? string.Empty;
}
else
Expand Down

0 comments on commit ee976a8

Please sign in to comment.