Skip to content

Commit 4b7f515

Browse files
authored
Fix installation instructions for developers in the docs (#663)
1 parent 31716f6 commit 4b7f515

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ git clone [email protected]:trixi-framework/TrixiParticles.jl.git
7878
cd TrixiParticles.jl
7979
mkdir run
8080
julia --project=run -e 'using Pkg; Pkg.develop(PackageSpec(path="."))' # Add TrixiParticles.jl to `run` project
81-
julia --project=run -e 'using Pkg; Pkg.add("OrdinaryDiffEq", "Plots")' # Add additional packages
81+
julia --project=run -e 'using Pkg; Pkg.add(["OrdinaryDiffEq", "Plots"])' # Add additional packages
8282
```
8383

8484
If you installed TrixiParticles.jl this way, you always have to start Julia with the

docs/src/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ git clone [email protected]:trixi-framework/TrixiParticles.jl.git
2525
cd TrixiParticles.jl
2626
mkdir run
2727
julia --project=run -e 'using Pkg; Pkg.develop(PackageSpec(path="."))' # Add TrixiParticles.jl to `run` project
28-
julia --project=run -e 'using Pkg; Pkg.add("OrdinaryDiffEq", "Plots")' # Add additional packages
28+
julia --project=run -e 'using Pkg; Pkg.add(["OrdinaryDiffEq", "Plots"])' # Add additional packages
2929
```
3030

3131
If you installed TrixiParticles.jl this way, you always have to start Julia with the

0 commit comments

Comments
 (0)