Skip to content

Commit df11489

Browse files
Merge pull request #2490 from SciML/os/improve-contrib-docs
fix contrib docs
2 parents b4a6686 + 5decbdf commit df11489

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ handling compared to some other Julia packages. When running the full test suite
1111
recommended that one has dev'd all of the relevant packages. This can be done via:
1212

1313
```julia
14+
using Pkg
1415
pathtolibrary = Pkg.pkgdir(OrdinaryDiffEq)
15-
sublibs = string.((pathtolibrary,), readdir(pathtolibrary))
16+
sublibs = joinpath.(pathtolibrary, "lib", readdir(joinpath(pathtolibrary, "lib")))
1617
Pkg.develop(map(name -> Pkg.PackageSpec.(; path = name), sublibs));
1718
```
1819

0 commit comments

Comments
 (0)