Skip to content

Commit

Permalink
fix: Fixes path after package name change (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
saitho authored Jan 25, 2020
1 parent 078f6e0 commit c117541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const colors = require('colors/safe');
const fs = require('fs');
const argv = require('yargs').argv;
let rootPath = path.join('..', '..');
let rootPath = path.join('..', '..', '..');
if (argv.hasOwnProperty('root')) {
rootPath = argv.root;
}
Expand Down

0 comments on commit c117541

Please sign in to comment.