From 2c52eeaa2badbb1bcb3c2520e358fcc088bc3879 Mon Sep 17 00:00:00 2001 From: Bret Comnes Date: Wed, 12 Feb 2020 21:17:13 -0700 Subject: [PATCH] bug: Fix reference bug in logging --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 063602e..02bc32d 100644 --- a/index.js +++ b/index.js @@ -66,7 +66,7 @@ function statsHandler (opts = {}) { console.log(`Done diffing local and remote files in ${prettyTime([0, stats.timer.elapsed])}`) console.log(`${diffing.uploadCount} files to upload`) 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() break }