From 13a34f2bfa0dbf319d4dddcfe5b40e3af9c9cc5d Mon Sep 17 00:00:00 2001 From: Chris Lewis Date: Thu, 16 Jun 2016 21:45:41 -0700 Subject: [PATCH] Add var to make linter happy --- lib/tessel/deployment/rust.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tessel/deployment/rust.js b/lib/tessel/deployment/rust.js index 88edcbf8..949a25e1 100644 --- a/lib/tessel/deployment/rust.js +++ b/lib/tessel/deployment/rust.js @@ -90,7 +90,7 @@ exportables.remoteRustCompilation = function(opts) { // Check if the URI has a port like localhost:1234 if (host.includes(':')) { - parts = opts.rustCC.split(':'); + var parts = opts.rustCC.split(':'); host = parts[0]; port = parts[1]; }