Skip to content

Commit

Permalink
Merge pull request SciML#2490 from SciML/os/improve-contrib-docs
Browse files Browse the repository at this point in the history
fix contrib docs
  • Loading branch information
ChrisRackauckas authored Oct 10, 2024
2 parents b4a6686 + 5decbdf commit df11489
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ handling compared to some other Julia packages. When running the full test suite
recommended that one has dev'd all of the relevant packages. This can be done via:

```julia
using Pkg
pathtolibrary = Pkg.pkgdir(OrdinaryDiffEq)
sublibs = string.((pathtolibrary,), readdir(pathtolibrary))
sublibs = joinpath.(pathtolibrary, "lib", readdir(joinpath(pathtolibrary, "lib")))
Pkg.develop(map(name -> Pkg.PackageSpec.(; path = name), sublibs));
```

Expand Down

0 comments on commit df11489

Please sign in to comment.