We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532d758 commit 35f1de9Copy full SHA for 35f1de9
dev/conda/build-generic.sh
@@ -115,8 +115,13 @@ then
115
export R_HOME=$( R RHOME )
116
117
log "Installing RInside into $R_HOME ..."
118
- Rscript $DEV_CONDA/install-RInside.R 2>&1 | \
119
- tee $RECIPE_DIR/install-RInside.log
+ (
+ # Allow pipe errors here:
120
+ # we put token "Swift-RInside-SUCCESS" in the log:
121
+ set +o pipefail
122
+ Rscript $DEV_CONDA/install-RInside.R 2>&1 | \
123
+ tee $RECIPE_DIR/install-RInside.log
124
+ )
125
if ! grep -q "Swift-RInside-SUCCESS" $RECIPE_DIR/install-RInside.log
126
then
127
abort "Installing RInside failed."
0 commit comments