Skip to content

Commit

Permalink
fix: pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Jun 14, 2024
1 parent 65d8932 commit 16beab6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,9 @@ auto main( int argc, char* argv[] ) -> int {
if ( newIndex ) {
// stuff we ignore during the building of the index, the "standard" useless stuff is hardcoded
excludes.emplace_back( "sdk_content.*" );
excludes.emplace_back( ".*.vmf_autosave" );
excludes.emplace_back( ".*index.rsv" );
excludes.emplace_back( ".*\\.vmf_autosave.*" );
excludes.emplace_back( ".*\\.vmx" );
excludes.emplace_back( ".*index\\.rsv" );
ret = create( root, indexLocation, excludes, overwrite, output.get() );
} else {
// warn about stuff which shouldn't be here, don't use the `output::report` as this is a negligible user error
Expand Down

0 comments on commit 16beab6

Please sign in to comment.