-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Track sources in base directory non-recursively
Using a recursive Source meant that ~ looked into target. If you have any source generators and use ~ with anything the invokes them, like ~compile, that means that the act of generating sources triggers ~ to re-execute compile (perhaps only on macOS where the NIO WatchService just polls, after an initial delay). Requires sbt/io#78 Fixes sbt#3501
- Loading branch information
Showing
2 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[@dwijnand]: https://github.com/dwijnand | ||
|
||
[#3501]: https://github.com/sbt/sbt/issues/3501 | ||
[#3634]: https://github.com/sbt/sbt/pull/3634 | ||
|
||
### Fixes with compatibility implications | ||
|
||
### Improvements | ||
|
||
### Bug fixes | ||
|
||
- Fixes `~` to recompile on loop (when a source generator or sbt-buildinfo is present). [#3501][]/[#3634][] by [@dwijnand][] |