Skip to content

Commit 93750af

Browse files
committed
Allow opt-out vignettes via envvar
1 parent 6a7e06f commit 93750af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ fi
140140

141141
# Do not build articles (vignettes) for remotes
142142
#BUILD_ARGS="--resave-data"
143-
if [ "${5}" == "false" ]; then
143+
if [ "${5}" == "false" ] || [ "$SKIP_VIGNETTES" ]; then
144144
BUILD_ARGS="${BUILD_ARGS} --no-build-vignettes"
145145
rm -Rf ${PKGDIR}/vignettes
146146
fi

0 commit comments

Comments
 (0)