diff --git a/incremental-tasks/README.md b/incremental-tasks/README.md index 6053cbc..8643152 100644 --- a/incremental-tasks/README.md +++ b/incremental-tasks/README.md @@ -2,22 +2,22 @@ In the `build.gradle` script, you will find two tasks: -- `generateFoo`, which generates a configurable amount of files -- `transformFoo`, which creates new files based on the files from `generateFoo` +- `generateFoos`, which generates a configurable amount of files +- `transformFoos`, which creates new files based on the files from `generateFoos` -- Run `./gradlew transformFoo -i` twice +- Run `./gradlew transformFoos -i` twice - Q: Which tasks were executed in the second run, and why? Configure inputs and outputs for both tasks, so neither runs when they don't have to. -- Run `./gradlew transformFoo -i` twice +- Run `./gradlew transformFoos -i` twice - Q: Which tasks were executed in the second run, and why? - Modify the `fooCount` property -- Run `./gradlew transformFoo -i` +- Run `./gradlew transformFoos -i` - Q: Which tasks were executed, and why? -- Delete some of the files in `foo/transform` -- Run `./gradlew transformFoo -i` +- Delete some of the files in `foo/transformed` +- Run `./gradlew transformFoos -i` - Q: Which tasks were executed, and why? -- Create a new file, `foo/transform/some-other-output.txt` -- Run `./gradlew transformFoo -i` +- Create a new file, `foo/transformed/some-other-output.txt` +- Run `./gradlew transformFoos -i` - Q: Which tasks were executed, and why?