mirror of
https://github.com/sbt/sbt.git
synced 2026-09-08 11:13:23 +02:00
[2.0.x] Fixes the source dependency fix (#8982)
**Problem/Solution** Run was missing cwd.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user