comparison update_manifest.jl @ 1675:61422abd17a4

Add script for updating dependencies
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 28 Aug 2024 10:11:34 +0200
parents
children 608a24a7b13b
comparison
equal deleted inserted replaced
1671:791d0f3f289a 1675:61422abd17a4
1 using Pkg
2
3 function update_directory(d)
4 Pkg.activate(d)
5 Pkg.update()
6 println()
7 end
8
9 update_directory(".")
10 update_directory("benchmark")
11 update_directory("docs")
12 update_directory("test")