blob: b46599956fcf41420e3c3e82cb22cc4ce71d3b0e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
local path = require "mason.core.path"
---@param install_dir string
return function(install_dir)
return {
cmd = { "R", "--slave", "-f", path.concat { install_dir, "server.R" } },
}
end
|