-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit 6c28d08
Use more appropriate
The "Task" task runner tool is used to perform common development operations for the project.
Tasks may call other tasks. Under certain conditions, this can result in the same task being called redundantly. This
can be avoided by using the `run` key to configure the task so that redundant calls will be skipped.
Previously, the `poetry:install` task's `run` key was set to `once`, which causes all but the first call will be
skipped. A safer configuration is `when_changed`, which will skip subsequent calls, unless the task configuration has
changed.run
key configuration for poetry:install
task1 parent b0ed02a commit 6c28d08
1 file changed
+1
-1
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
425 | 425 |
| |
426 | 426 |
| |
427 | 427 |
| |
428 | - | ||
428 | + | ||
429 | 429 |
| |
430 | 430 |
| |
431 | 431 |
| |
|
0 commit comments