Description
I have an R Script that I have setup to run as follows with the Task YAML file
cmd:
- "C:/Program Files/R/R-4.4.0/bin/x64/Rscript.exe" script.R
When I get this task to run, it aborts silently, without any error messages. However, when I use this exact same prompt running on cmd on windows in runs fine. What is causing this RAM limitation?
If I should post this elsewhere, let me know as well.
Version
3.45.4
Operating system
Windows
Experiments Enabled
No response
Example Taskfile
version: '3'
method: timestamp
vars:
RSCRIPT: "C:/Program Files/R/R-4.4.0/bin/x64/Rscript.exe"
tasks:
example_task:
cmds:
- '"{{.RSCRIPT}}" script.R'
Description
I have an R Script that I have setup to run as follows with the Task YAML file
cmd:
When I get this task to run, it aborts silently, without any error messages. However, when I use this exact same prompt running on cmd on windows in runs fine. What is causing this RAM limitation?
If I should post this elsewhere, let me know as well.
Version
3.45.4
Operating system
Windows
Experiments Enabled
No response
Example Taskfile