From 4d516c68bfa6ce8f9e9be05953d92e41936a99f7 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 22 Jun 2016 06:52:20 -0400 Subject: [PATCH] More zipDirectory() test debugging --- chrome/content/zotero/xpcom/file.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chrome/content/zotero/xpcom/file.js b/chrome/content/zotero/xpcom/file.js index 1298d3a3a..2fb8c10ca 100644 --- a/chrome/content/zotero/xpcom/file.js +++ b/chrome/content/zotero/xpcom/file.js @@ -733,6 +733,8 @@ Zotero.File = new function(){ try { iterator = new OS.File.DirectoryIterator(path); yield iterator.forEach(Zotero.Promise.coroutine(function* (entry) { + Zotero.debug(entry); + if (entry.isSymLink) { Zotero.debug("Skipping symlink " + entry.name); return;