Skip to content

Commit

Permalink
Add semicolons to make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Lewis authored and johnnyman727 committed Jul 13, 2016
1 parent dc98d52 commit 872974f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/tessel/deployment/rust.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ exportables.remoteRustCompilation = function(opts) {

// Check if the URI has a port like localhost:1234
if (host.includes(':')) {
parts = opts.rustCC.split(':')
host = parts[0]
port = parts[1]
parts = opts.rustCC.split(':');
host = parts[0];
port = parts[1];
}

// The location of our cross compilation server
Expand Down

0 comments on commit 872974f

Please sign in to comment.