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-06 20:28:18 +02:00

14 lines
197 B
Julia

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