Skip to content

Commit e7e2fd2

Browse files
committed
remove sys dep
1 parent 8ab6960 commit e7e2fd2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cli/cmds/download-file.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"use strict";
3232

3333
var Promise = require('promise');
34-
var sys = require('sys');
3534
var utils = require('../utils');
3635

3736
var downloadFile = function(args) {
@@ -55,7 +54,7 @@ var downloadFile = function(args) {
5554
var url = args._[0];
5655
var destPath = args._[1];
5756
var log = options.verbose ? console.log.bind(console) : function() { };
58-
var print = options.verbose ? sys.print.bind(sys) : function() { };
57+
var print = options.verbose ? console.log.bind(console) : function() { };
5958

6059
var emitter = require('../../management/download').downloadFile(url, destPath);
6160
emitter.on('start', function(e) {

0 commit comments

Comments
 (0)