Skip to content

Commit

Permalink
Fix XO errors
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Oct 20, 2018
1 parent 54b2a31 commit a0000fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/list-app.js
Expand Up @@ -27,8 +27,8 @@ async function listApp(config, options) {
// Instantiate proxy server
const proxyServer = new AnyProxy.ProxyServer(proxyOptions);

// Spinner object
let spin;
// Spinner object
let spin;

// When proxy server is ready
proxyServer.on('ready', () => {
Expand All @@ -45,7 +45,7 @@ async function listApp(config, options) {
// Instructions for setting up proxy
console.log('Set your HTTP proxy IP to '.bold.blue + address.ip().bold.yellow + ' with port '.bold.blue + (String(options.port)).bold.yellow + '.'.bold.blue);

spin = ora('Waiting for request...').start();
spin = ora('Waiting for request...').start();
});

// (Not) handle errors
Expand All @@ -65,8 +65,8 @@ async function listApp(config, options) {
return {id: device.devId, key: device.localKey};
});

// Stop spinner
spin.stop();
// Stop spinner
spin.stop();

// Print out results
console.log('\n');
Expand Down

0 comments on commit a0000fb

Please sign in to comment.