Skip to content

Commit 1307d74

Browse files
authored
Fix Pkg usage in developing.md (#149)
1 parent bf0bc1c commit 1307d74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

developing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You'll have to do the following:
1010

1111
```julia
1212
using Pkg
13-
Pkg.develop("https://github.com/<myusername>/FastAI.jl")
13+
Pkg.develop(url="https://github.com/<myusername>/FastAI.jl.git")
1414
```
1515

1616
**Activate the documentation environment and install the dependencies.** You can find the folder that FastAI.jl was cloned to using `using FastAI; pkgdir(FastAI)`. In a Julia session, change the current directory to that path, activate the `docs/` environment and install unregistered dependencies:
@@ -20,8 +20,8 @@ using FastAI, Pkg
2020

2121
cd(pkgdir(FastAI))
2222
Pkg.activate("./docs/")
23-
Pkg.add("https://github.com/lorenzoh/Pollen.jl")
24-
Pkg.add("https://github.com/lorenzoh/LiveServer.jl")
23+
Pkg.add(url="https://github.com/lorenzoh/Pollen.jl")
24+
Pkg.add(url="https://github.com/lorenzoh/LiveServer.jl")
2525
Pkg.instantiate()
2626
```
2727

0 commit comments

Comments
 (0)