From 84d1c1bf4983911569bb14ea84225eca22770929 Mon Sep 17 00:00:00 2001 From: Chris Sattinger Date: Fri, 17 Apr 2015 18:09:03 +0200 Subject: [PATCH] fix #1429 case insensitive file systems can cause quarks to become confused --- SCClassLibrary/Common/Quarks/Quark.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCClassLibrary/Common/Quarks/Quark.sc b/SCClassLibrary/Common/Quarks/Quark.sc index b95beca8cb6..95016b85148 100644 --- a/SCClassLibrary/Common/Quarks/Quark.sc +++ b/SCClassLibrary/Common/Quarks/Quark.sc @@ -189,7 +189,7 @@ Quark { // search Quarks folders (Quarks.additionalFolders ++ [Quarks.folder]).do({ |f| var localPath = f +/+ name, url; - if(File.exists(localPath), { + if(File.existsCaseSensitive(localPath), { ^[name, nil, refspec, localPath] }); });