Allow SVN builds without SVN root to still start
This commit is contained in:
parent
30ae815295
commit
956825b29a
|
@ -326,7 +326,7 @@ Zotero.Schema = new function(){
|
||||||
while (entries.hasMoreElements()) {
|
while (entries.hasMoreElements()) {
|
||||||
var file = entries.getNext();
|
var file = entries.getNext();
|
||||||
file.QueryInterface(Components.interfaces.nsIFile);
|
file.QueryInterface(Components.interfaces.nsIFile);
|
||||||
if (!file.leafName.match(fileNameRE) || file.isDirectory()) {
|
if (!file.exists || !file.leafName.match(fileNameRE) || file.isDirectory()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var newObj = new Zotero[Mode](file);
|
var newObj = new Zotero[Mode](file);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user