Blender Crawl: Improvements based on User Feedback #53

Merged
Nick Alberelli merged 11 commits from fix/blender-crawl-improvements into main 2023-05-22 16:50:42 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit eb79612b3b - Show all commits

View File

@ -34,7 +34,7 @@ Run directly out of repo folder or follow above installation instructions. Give
| --script| Path to blender python script(s) to execute inside .blend files during crawl.| | --script| Path to blender python script(s) to execute inside .blend files during crawl.|
| -r, --recursive| If provided in combination with a folder path will perform recursive crawl| | -r, --recursive| If provided in combination with a folder path will perform recursive crawl|
| -f --filter| Provide a string to filter the found .blend files| | -f --filter| Provide a string to filter the found .blend files|
| -a, --ask| If provided there will be no confirmation prompt before running script on .blend files.| | -a, --ask| If provided there will be a prompt for confirmation before running script on .blend files.|
| -p, --purge| Run 'built-in function to purge data-blocks from all .blend files found in crawl.'.| | -p, --purge| Run 'built-in function to purge data-blocks from all .blend files found in crawl.'.|
| --exec| If provided user must provide blender executable path, OS default blender will not be used if found.| | --exec| If provided user must provide blender executable path, OS default blender will not be used if found.|
| -h, --help| show the above help message and exit| | -h, --help| show the above help message and exit|

View File

@ -65,7 +65,7 @@ parser.add_argument(
parser.add_argument( parser.add_argument(
"-a", "-a",
"--ask", "--ask",
help="If --ask is provided there will be no confirmation prompt before running script on .blend files.", help="If --ask is provided there will be a prompt for confirmation before running script on .blend files.",
action="store_true", action="store_true",
) )