Skip to content

Commit 338c2c5

Browse files
committed
improve install script
1 parent 5792f5c commit 338c2c5

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

bin/install

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
#!/bin/bash
2-
32
if [[ $(basename $(pwd)) == "bin" ]]; then
43
cd ..
54
fi
65

7-
# TODO check if juliaup is installed
8-
9-
# TODO check if Julia is installed and install it if not
10-
6+
# check if juliaup is installed
117
if ! command -v juliaup &> /dev/null; then
128
echo "Please install the Julia installer 'juliaup'!"
139
echo "See: https://github.com/JuliaLang/juliaup"
@@ -28,3 +24,5 @@ julia -e 'using Pkg; Pkg.add("TestEnv"); Pkg.add("ControlPlots")'
2824

2925
julia --project -e 'include("bin/install.jl")'
3026

27+
# TODO rename Manifest.toml to Manifest-v1.11.toml if required
28+

0 commit comments

Comments
 (0)