1
0
Fork 0
mirror of https://gitlab.rlp.net/mobitar/ReCo.jl.git synced 2024-09-19 19:01:17 +00:00
ReCo.jl/scripts/update.jl

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()