[1.x] Fixes the source dependency fix (#8974)

**Problem/Solution**
Run was missing cwd.
This commit is contained in:
eugene yokota 2026-03-24 12:29:18 -04:00 committed by GitHub
parent 34856b06ad
commit 267880ad26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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