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

17 lines
262 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-09-25 15:56:00 +00:00
base_dir = pwd()
2022-04-06 18:28:18 +00:00
for project in projects
2022-09-25 15:56:00 +00:00
cd(joinpath(base_dir, project))
Pkg.activate(".")
2022-04-06 18:28:18 +00:00
Pkg.update()
end
return nothing
end
update()