Skip to content

Commit

Permalink
Fix if
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 c478e4a commit dc98d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tessel/deployment/rust.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ exportables.remoteRustCompilation = function(opts) {
var port = '8080';

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

0 comments on commit dc98d52

Please sign in to comment.