Skip to content

Commit

Permalink
Merge c501f91 into 1bbffa0
Browse files Browse the repository at this point in the history
  • Loading branch information
howardroark committed Apr 2, 2017
2 parents 1bbffa0 + c501f91 commit 5a1045f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
'use strict';

var fs = require('fs');
var fsExtra = require('fs-extra');
var mkdirp = require('mkdirp');
var copy = require('copy');
var rimraf = require('rimraf');
var path = require('path');
var ospath = require('ospath');
Expand Down Expand Up @@ -74,7 +74,7 @@ var fetchDirectory = function (state, callback) {
callback(err);
return;
}
fsExtra.copy(input, tmpPath, function (err) {
copy(input, tmpPath, function (err) {
if (err) {
callback(err);
return;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"cli-argparse": "^1.1.0",
"commander": "^2.9.0",
"extend": "^3.0.0",
"fs-extra": "^2.0.0",
"globby": "^6.1.0",
"gunzip-maybe": "^1.3.1",
"hjson": "^2.3.1",
"inquirer-compatibility-fork": "^2.0.1",
"is-directory": "^0.3.1",
"mkdirp": "^0.5.1",
"cp": "^0.2.0",
"mv": "^2.1.1",
"node-dir": "^0.1.11",
"nunjucks": "^3.0.0",
Expand Down

0 comments on commit 5a1045f

Please sign in to comment.