From 6cde3242900fbf16988e9e5ff5a403b56eb658cf Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Sat, 4 Mar 2017 14:33:57 +0100 Subject: [PATCH] Fix core renderer tests --- src/config.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.coffee b/src/config.coffee index e873a1348..e7d05da6d 100644 --- a/src/config.coffee +++ b/src/config.coffee @@ -839,7 +839,7 @@ class Config relativePath = sourcePath.substring(templateConfigDirPath.length + 1) destinationPath = path.join(@configDirPath, relativePath) queue.push({sourcePath, destinationPath}) - fs.traverseTree(templateConfigDirPath, onConfigDirFile, (path) -> true) + fs.traverseTree(templateConfigDirPath, onConfigDirFile, ((path) -> true), (->)) loadUserConfig: -> return if @shouldNotAccessFileSystem()