blob: 3f7f413efe35e7e5fc7043dc318e8fff84c7da6e (
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
|