Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scrooge-sbt-plugin: Clarify default for scroogeThriftOutputFolder
Summary: Problem The explanation for the default value of scroogeThriftOutputFolder is out of date. The default output is now sourceManaged/thrift. The output of git diff scrooge-4.7.0 -- src/main/scala/com/twitter/ScroogeSBT.scala shows, in part, this: ``` - scroogeThriftOutputFolder <<= (sourceManaged) { identity }, + scroogeThriftOutputFolder in Compile := (sourceManaged in Compile).value / "thrift", + scroogeThriftOutputFolder in Test := (sourceManaged in Test).value / "thrift", ``` Signed-off-by: Moses Nakamura <[email protected]> Differential Revision: https://phabricator.twitter.biz/D144011
- Loading branch information