mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-12-21 00:51:21 +00:00
Add update script to update all subprojects
This commit is contained in:
parent
28b30d6de6
commit
b737175a7f
2 changed files with 24 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,3 +4,5 @@ exports
|
|||
*.mem
|
||||
|
||||
LocalPreferences.toml
|
||||
|
||||
start.jl
|
22
update.jl
Normal file
22
update.jl
Normal 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()
|
Loading…
Reference in a new issue