From 49f033cd3680f577141858279a855cf28393b909 Mon Sep 17 00:00:00 2001 From: Luca Fabbri Date: Thu, 12 Oct 2017 12:11:05 +0200 Subject: [PATCH] Missing whitespace --- lib/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client.js b/lib/client.js index ca999b7..71c4841 100644 --- a/lib/client.js +++ b/lib/client.js @@ -155,7 +155,7 @@ Client.prototype.upload = function (patterns, dest, options, uploadCallback) { ftp.list(destPath, function (err, list) { if (err) log(err, 'debug'); - log('Comparing file' + this.src, 'debug'); + log('Comparing file ' + this.src, 'debug'); if (list && list[0]) { if (options.overwrite === 'older' && list[0].date && new Date(list[0].date.getTime() + timeDif) < this.mtime) { toDelete.push(this); @@ -498,4 +498,4 @@ Client.prototype._clean = function (files, baseDir) { return null; } })); -} \ No newline at end of file +}