Skip to content

Commit

Permalink
Update romeo.jl
Browse files Browse the repository at this point in the history
Install packages automatically
  • Loading branch information
korbinian90 authored Sep 28, 2023
1 parent 2926ba4 commit 6ec6806
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion romeo.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import Pkg
Pkg.activate(@__DIR__)
using ROMEO, MriResearchTools, ArgParse
try
using ROMEO, MriResearchTools, ArgParse
catch
Pkg.add(["ROMEO", "MriResearchTools", "ArgParse"])
using ROMEO, MriResearchTools, ArgParse
end

@time msg = unwrapping_main(ARGS)
println(msg)

0 comments on commit 6ec6806

Please sign in to comment.