Skip to content

Commit

Permalink
Merge pull request #78 from kdheepak/patch-1
Browse files Browse the repository at this point in the history
fix: Allow missing juliaEnv
  • Loading branch information
davidanthoff authored Jun 29, 2024
2 parents 2f5fe03 + 956c2e3 commit 32f4b86
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)

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

0 comments on commit 32f4b86

Please sign in to comment.