We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a94552 commit e8c52c6Copy full SHA for e8c52c6
bin/install
@@ -8,3 +8,5 @@ export JULIA_PKG_SERVER_REGISTRY_PREFERENCE=eager
8
9
julia -e 'using Pkg; Pkg.add("TestEnv"); Pkg.add("ControlPlots")'
10
11
+julia --project -e 'include("bin/install.jl")'
12
+
bin/install.jl
@@ -0,0 +1,11 @@
1
+using Pkg
2
3
+try
4
+ Pkg.instantiate()
5
+catch
6
+ try
7
+ Pkg.resolve()
+ catch
+ Pkg.update()
+ end
+end
0 commit comments