Skip to content

Commit

Permalink
Don't require --fork when --hybrid is passed to the launch command (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Apr 11, 2023
1 parent ca18f23 commit ddd165c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -238,7 +238,6 @@ abstract class LaunchTests extends TestSuite with LauncherOptions {
"--hybrid",
"--work-dir",
workDir,
"--fork",
extraCsArgs,
"--",
"--help"
Expand Down
Expand Up @@ -407,7 +407,7 @@ object Launch extends CoursierCommand[LaunchOptions] {
b.result()
}

if (params.fork)
if (params.fork || params.hybrid)
launchFork(
hierarchy0,
mainClass0,
Expand Down

0 comments on commit ddd165c

Please sign in to comment.