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

15 lines
205 B
Julia
Raw Normal View History

2022-04-06 18:28:18 +00:00
using Pkg: Pkg
function update()
2022-04-07 00:33:05 +00:00
projects = readlines("scripts/projects.txt")
2022-04-06 18:28:18 +00:00
for project in projects
Pkg.activate(project)
Pkg.update()
end
return nothing
end
update()