mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-11-12 22:40:44 +00:00
14 lines
205 B
Julia
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()
|