From c525f0b39f36f2c5d352241cf457293be3125e94 Mon Sep 17 00:00:00 2001 From: tonyk7440 Date: Fri, 28 Oct 2022 18:41:13 +0100 Subject: [PATCH] #3473 try alternate install cmd --- lib/functions/detectFiles.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/functions/detectFiles.sh b/lib/functions/detectFiles.sh index 258b99a9..dfcaf266 100755 --- a/lib/functions/detectFiles.sh +++ b/lib/functions/detectFiles.sh @@ -479,7 +479,8 @@ function RunAdditionalInstalls() { ############################## INSTALL_CMD=$( cd "${WORKSPACE_PATH}" || exit 0 - R CMD INSTALL "${BUILD_PKG}" 2>&1 + R -e "install.packages('remotes', repos = 'https://cloud.r-project.org/')" + R -e "remotes::install_local('.', dependencies=T)" 2>&1 ) ##############