mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-11-08 22:21:08 +00:00
23 lines
351 B
Julia
23 lines
351 B
Julia
|
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()
|