The R Project SVN R

Rev

Rev 55584 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
52164 ripley 1
# ${R_HOME}/bin/check -*- sh -*- for checking add-on packages
2
 
3
args=
4
while test -n "${1}"; do
5
  args="${args}nextArg${1}"
6
  shift
7
done
8
 
9
## NB: Apple's ICU needs LC_COLLATE set when R is started.
77228 maechler 10
echo 'tools:::.check_packages()' | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" --no-restore --no-echo --args ${args}