Skip to content

Commit

Permalink
Board: changing "Device(s)" to "Available"
Browse files Browse the repository at this point in the history
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
  • Loading branch information
rwaldron committed Apr 6, 2017
1 parent 308b8cc commit a326a46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/board.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ var Serial = {
return;
}

this.info("Device(s)", chalk.grey(ports));
this.info("Available", chalk.grey(ports));

// Get the first available device path
// from the list of detected ports
Expand Down Expand Up @@ -300,7 +300,7 @@ function Board(opts) {
// Either an IO instance was provided or isOnBoard is true
if (!opts.port && this.io !== null) {
/* istanbul ignore next */
this.info("Device(s)", chalk.grey(this.io.name || "unknown"));
this.info("Available", chalk.grey(this.io.name || "unknown"));

["connect", "ready"].forEach(function(type) {
this.io.once(type, function() {
Expand Down

0 comments on commit a326a46

Please sign in to comment.