From 30abb9c088fbb96922f6d89a9ba96eae7b35e834 Mon Sep 17 00:00:00 2001 From: tobspr Date: Sat, 27 Jun 2020 10:53:13 +0200 Subject: [PATCH] Update gulfile --- gulp/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/gulpfile.js b/gulp/gulpfile.js index f2fdd9d4..c0b2b39d 100644 --- a/gulp/gulpfile.js +++ b/gulp/gulpfile.js @@ -108,7 +108,7 @@ gulp.task("utils.requireCleanWorkingTree", cb => { if (output.length > 0) { console.error("\n\nYou have unstaged changes, please commit everything first!"); console.error("Unstaged files:"); - console.error(output.join("\n")); + console.error(output.map(x => "'" + x + "'").join("\n")); process.exit(1); } cb();