mirror of https://github.com/sbt/sbt.git
[1.x] Fixes the source dependency fix (#8974)
**Problem/Solution** Run was missing cwd.
This commit is contained in:
parent
34856b06ad
commit
267880ad26
|
|
@ -138,7 +138,7 @@ object Resolvers {
|
|||
run(None, command: _*)
|
||||
|
||||
def run(cwd: Option[File], command: String*): Unit =
|
||||
run(None, None, command: _*)
|
||||
run(cwd, None, command: _*)
|
||||
|
||||
private def run(cwd: Option[File], log: Option[Logger], command: String*): Unit = {
|
||||
val process = Process(command, cwd)
|
||||
|
|
|
|||
Loading…
Reference in New Issue