1
0
Fork 0
mirror of https://gitlab.rlp.net/mobitar/ReCo.jl.git synced 2024-09-17 18:51:17 +00:00

Add update script to update all subprojects

This commit is contained in:
Mo8it 2022-04-06 17:52:24 +02:00
parent 28b30d6de6
commit b737175a7f
2 changed files with 24 additions and 0 deletions

2
.gitignore vendored
View file

@ -4,3 +4,5 @@ exports
*.mem
LocalPreferences.toml
start.jl

22
update.jl Normal file
View file

@ -0,0 +1,22 @@
using Pkg: Pkg
function update()
projects = (
".",
"test",
"analysis",
"graphics/CairoMakie_graphics",
"graphics/Luxor_graphics",
"performance",
"visualization",
)
for project in projects
Pkg.activate(project)
Pkg.update()
end
return nothing
end
update()