bug: Fix reference bug in logging

This commit is contained in:
Bret Comnes 2020-02-12 21:17:13 -07:00
parent 19246fac79
commit 2c52eeaa2b
No known key found for this signature in database
GPG Key ID: 3705F4634DC3A1AC

View File

@ -66,7 +66,7 @@ function statsHandler (opts = {}) {
console.log(`Done diffing local and remote files in ${prettyTime([0, stats.timer.elapsed])}`) console.log(`Done diffing local and remote files in ${prettyTime([0, stats.timer.elapsed])}`)
console.log(`${diffing.uploadCount} files to upload`) console.log(`${diffing.uploadCount} files to upload`)
console.log(`${diffing.deleteCount} ` + (opts.cleanup ? 'files to delete' : 'orphaned files')) console.log(`${diffing.deleteCount} ` + (opts.cleanup ? 'files to delete' : 'orphaned files'))
console.log(`${diffing.skipCoount} files to skip`) console.log(`${diffing.skipCount} files to skip`)
core.endGroup() core.endGroup()
break break
} }