File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ if Rhome == ""
56
56
__precompile__ (false )
57
57
end
58
58
59
- include (" versioninfo .jl" )
59
+ include (" debuginfo .jl" )
60
60
include (" types.jl" )
61
61
include (" Const.jl" )
62
62
include (" methods.jl" )
Original file line number Diff line number Diff line change 2
2
Print some useful information about the current RCall.jl setup.
3
3
If `all` is false, only RCall.jl information is printed, otherwise
4
4
information about your Julia and R setup is printed as well.
5
+ This function is intended to be used in the Julia REPL only.
5
6
"""
6
- function versioninfo (; all= true )
7
+ function debuginfo (; all= true )
8
+ if all && ! isdefined (Main, :versioninfo )
9
+ error (" This function is intended to be used in the Julia REPL only." )
10
+ end
7
11
if all
8
12
println (" RCall.jl information:" )
9
13
end
You can’t perform that action at this time.
0 commit comments