From 934048bfe762637964622ae4261e25e24e60ec1b Mon Sep 17 00:00:00 2001
From: Joris LIMONIER
Date: Fri, 9 Apr 2021 13:32:51 +0200
Subject: [PATCH] Adapted code for newer versions of Julia
Pkg.clone seems to be deprecated (see https://discourse.julialang.org/t/is-pkg-clone-replaced-by-pkg-add-in-v1-0-3/19879).
---
.../getting-started/2015-05-25-getting-started_julia_index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_posts/julia/getting-started/2015-05-25-getting-started_julia_index.html b/_posts/julia/getting-started/2015-05-25-getting-started_julia_index.html
index a8769904e..f140c8129 100755
--- a/_posts/julia/getting-started/2015-05-25-getting-started_julia_index.html
+++ b/_posts/julia/getting-started/2015-05-25-getting-started_julia_index.html
@@ -15,7 +15,7 @@ Installation
Install using Julia's Pkg
module. From the Julia REPL:
- Pkg.clone("https://github.com/plotly/Plotly.jl")
+ Pkg.add("Plotly")