mirror of https://github.com/sbt/sbt.git
[2.0.x] Fixes the source dependency fix (#8982)
**Problem/Solution** Run was missing cwd.
This commit is contained in:
parent
e382084bbf
commit
872985dcf4
|
|
@ -139,7 +139,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