mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-09-19 19:01:17 +00:00
16 lines
262 B
Julia
16 lines
262 B
Julia
using Pkg: Pkg
|
|
|
|
function update()
|
|
projects = readlines("scripts/projects.txt")
|
|
base_dir = pwd()
|
|
|
|
for project in projects
|
|
cd(joinpath(base_dir, project))
|
|
Pkg.activate(".")
|
|
Pkg.update()
|
|
end
|
|
|
|
return nothing
|
|
end
|
|
|
|
update()
|