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
2022-04-07 02:33:05 +02:00

14 lines
205 B
Julia

using Pkg: Pkg
function update()
projects = readlines("scripts/projects.txt")
for project in projects
Pkg.activate(project)
Pkg.update()
end
return nothing
end
update()