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 5792f5c commit 338c2c5Copy full SHA for 338c2c5
bin/install
@@ -1,13 +1,9 @@
1
#!/bin/bash
2
-
3
if [[ $(basename $(pwd)) == "bin" ]]; then
4
cd ..
5
fi
6
7
-# TODO check if juliaup is installed
8
9
-# TODO check if Julia is installed and install it if not
10
+# check if juliaup is installed
11
if ! command -v juliaup &> /dev/null; then
12
echo "Please install the Julia installer 'juliaup'!"
13
echo "See: https://github.com/JuliaLang/juliaup"
@@ -28,3 +24,5 @@ julia -e 'using Pkg; Pkg.add("TestEnv"); Pkg.add("ControlPlots")'
28
24
29
25
julia --project -e 'include("bin/install.jl")'
30
26
27
+# TODO rename Manifest.toml to Manifest-v1.11.toml if required
+
0 commit comments