Skip to content

Commit

Permalink
fix #1429 case insensitive file systems can cause quarks to become co…
Browse files Browse the repository at this point in the history
…nfused
  • Loading branch information
crucialfelix committed Apr 17, 2015
1 parent ba60b8a commit 84d1c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCClassLibrary/Common/Quarks/Quark.sc
Expand Up @@ -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]
});
});
Expand Down

0 comments on commit 84d1c1b

Please sign in to comment.