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