Ignore only .grive and .grive_state

pull/40/head
Visa Putkinen 2013-11-24 14:25:01 +02:00
parent 89506b4162
commit c15bfbe8bc
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ void State::FromLocal( const fs::path& p )
bool State::IsIgnore( const std::string& filename )
{
return filename[0] == '.' ;
return filename == ".grive" || filename == ".grive_state";
}
void State::FromLocal( const fs::path& p, Resource* folder )