From 21bbf7f1d4fc0944f1ea938be3ec6622ce928cf5 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Thu, 15 Oct 2020 22:42:37 +0200 Subject: [PATCH] restore === --- src/init.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.jl b/src/init.jl index 9716b64c..f10e507d 100644 --- a/src/init.jl +++ b/src/init.jl @@ -81,7 +81,7 @@ function __init__() artifact_toml = joinpath(@__DIR__, "Artifacts.toml") plotly_sha = artifact_hash("plotly", artifact_toml) - if plotly_sha == nothing || !artifact_exists(plotly_sha) + if plotly_sha === nothing || !artifact_exists(plotly_sha) plotly_sha = create_artifact() do artifact_dir download("https://cdn.plot.ly/plotly-1.54.2.min.js", joinpath(artifact_dir, "plotly-1.54.2.min.js")) end