Skip to content

Commit

Permalink
fix: fixed invalid imports. (#91)
Browse files Browse the repository at this point in the history
Fixes #90.

Changes proposed in this pull request:
- Fix invalid imports in cluster.js and interactive.js
  • Loading branch information
gjabell authored and ssmirr committed Jan 9, 2019
1 parent 7616253 commit ebda70c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/modules/clusters/cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const mustache = require('mustache');
const netaddr = require('netaddr');
const path = require('path');
const print = require('../print');
const spinner = require('../Spinner');
const spinner = require('../spinner');
const Ssh = require('../ssh');
const Utils = require('../utils/utils');
const vagrant = Promise.promisifyAll(require('node-vagrant'));
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/init/interactive.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const fs = require('fs-extra');
const inquirer = require('inquirer');
const mustache = require('mustache');
const path = require('path');
const spinner = require('../Spinner');
const spinner = require('../spinner');
const Utils = require('../utils/utils');
const validator = require('validator');

Expand Down

0 comments on commit ebda70c

Please sign in to comment.