Skip to content

Commit

Permalink
Add Device ID to the serial identify command.
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHagerman committed Mar 4, 2020
1 parent 55f4ecd commit c09abe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/serial.js
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ module.exports = class SerialCommand {
message: 'Which device did you mean?',
choices: devices.map((d) => {
return {
name: d.port + ' - ' + d.type,
name: d.port + ' - ' + d.type + ' - ' + d.deviceId,
value: d
};
})
Expand Down

0 comments on commit c09abe2

Please sign in to comment.