Hi,

I have this code:

    push!(DL_LOAD_PATH,".")

But the master moved DL_LOAD_PATH to Libdl.
I want my code to work on release-0.3 and master, so I changed it to this:

    try
      push!(DL_LOAD_PATH,".")
    catch
      push!(Libdl.DL_LOAD_PATH,".")
    end

Is there a better option?

Best regards,
Abel

Reply via email to