Skip to content

Commit

Permalink
test: set includeDerived default value to true
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtnz committed Feb 11, 2025
1 parent f653451 commit 199ced8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/tileindex-validate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ tileindex-validate <options> [...location]
| --retile | Output tile configuration for retiling | default: false |
| --validate | Validate that all input tiffs perfectly align to tile grid | default: true |
| --force-output | force output additional files | default: false |
| --includeDerived | Include input tiles as STAC `derived_from` links | default: false |
| --includeDerived | Include input tiles as STAC `derived_from` links | default: true |

<!-- This file has been autogenerated by src/readme/readme.generate.ts -->
2 changes: 1 addition & 1 deletion src/commands/tileindex-validate/tileindex.validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export const commandTileIndexValidate = command({
long: 'includeDerived',
description: 'Include input tiles as STAC `derived_from` links',
defaultValueIsSerializable: true,
defaultValue: () => false,
defaultValue: () => true,
}),
location: restPositionals({ type: string, displayName: 'location', description: 'Location of the source files' }),
},
Expand Down

0 comments on commit 199ced8

Please sign in to comment.