Hi all,

Using Fossil 1.24 on Windows, I've noticed that 'fossil clean' prompts me to
delete two files that are not reported by 'fossil extras'. A cursory look at
the Fossil code shows that while the 'extras' command uses the following:

  db_multi_exec("CREATE TEMP TABLE sfile(x TEXT PRIMARY KEY %s)",
                filename_collation());

'clean' does not use filename_collation and is therefore always
case-sensitive:

  db_multi_exec("CREATE TEMP TABLE sfile(x TEXT PRIMARY KEY)");
 
Which explains the behaviour I'm seeing (in my repository the two files were
originally added under a "docs" sub-folder that has since become "Docs".)

Cheers
Mark

_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to