Skip to content

Commit

Permalink
Fix problem with Julia 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Mar 5, 2024
1 parent 0c00316 commit e63e2b2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bin/create_sys_image
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,12 @@ else
elif [[ $julia_major == "1.8" ]]; then
cp Manifest-1.8.toml.default Manifest.toml
echo "Using Manifest-1.8.toml.default ..."
else
cp Manifest-1.9.toml.default Manifest.toml
elif [[ $julia_major == "1.9" ]]; then
cp Manifest-1.8.toml.default Manifest.toml
echo "Using Manifest-1.9.toml.default ..."
else
cp Manifest-1.10.toml.default Manifest.toml
echo "Using Manifest-1.10.toml.default ..."
fi
fi
# julia --project -e "using Pkg; Pkg.precompile()"
Expand Down

0 comments on commit e63e2b2

Please sign in to comment.