Skip to content

Commit

Permalink
fix: Allow missing juliaEnv
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak authored Jun 29, 2024
1 parent 2f5fe03 commit 956c2e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debugger_requests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function launch_request(debug_session::DebugSession, params::LaunchArguments)
DAPRPC.send(debug_session.endpoint, initialized_notification_type, InitializedEventArguments())
take!(debug_session.configuration_done)

Pkg.activate(params.juliaEnv)
params.juliaEnv!==missing && Pkg.activate(params.juliaEnv)

Check warning on line 54 in src/debugger_requests.jl

View check run for this annotation

Codecov / codecov/patch

src/debugger_requests.jl#L54

Added line #L54 was not covered by tests

empty!(ARGS)
if params.args!==missing
Expand Down

0 comments on commit 956c2e3

Please sign in to comment.