Skip to content

Commit d20e906

Browse files
committed
Add scripts for setup and update
1 parent e197026 commit d20e906

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

setup.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
julia --startup-file no --threads auto setup.jl

update.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
julia --startup-file no --threads auto update_packages.jl

update_packages.jl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using Pkg
2+
3+
manifest_paths = [
4+
"TabularRL.jl",
5+
"ApproximationUtils.jl/",
6+
"NonTabularRL.jl",
7+
"PlutoStartup.jl"
8+
]
9+
10+
for path in manifest_paths
11+
base_path = joinpath(@__DIR__, path)
12+
Pkg.activate(base_path)
13+
Pkg.update()
14+
end

0 commit comments

Comments
 (0)