[2.0.x] Fixes the source dependency fix (#8982)

**Problem/Solution**
Run was missing cwd.
This commit is contained in:
eugene yokota 2026-03-25 01:17:11 -04:00 committed by GitHub
parent e382084bbf
commit 872985dcf4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)