https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 07accf1ea1040cc0cb0f9ee74f30052dd420a945 authored by “katjaweigel” on 19 February 2021, 15:19:24 UTC
try to fix percentile indices.
Tip revision: 07accf1
install-r-deps.sh
#!/bin/bash

if ! command -v Rscript > /dev/null 2>&1
then
    echo "Executable Rscript not found! Exiting..." >> "$PREFIX/.messages.txt"
    exit 1
else
    Rscript "$PREFIX"/lib/python*/site-packages/esmvaltool/install/R/setup.R >> "$PREFIX/.messages.txt" 2>&1
fi
back to top