Create scancode package manifest patterns cache and exit
(*args, **kwargs)
| 267 | @click.command(name='scancode-reindex-package-patterns') |
| 268 | @click.help_option('-h', '--help') |
| 269 | def cache_package_patterns(*args, **kwargs): |
| 270 | """Create scancode package manifest patterns cache and exit""" |
| 271 | click.echo('Rebuilding the package cache patterns...') |
| 272 | get_cache(force=True) |
| 273 | click.echo('Done.') |
| 274 | |
| 275 | |
| 276 | if __name__ == '__main__': |