Skip to content

Commit

Permalink
fix hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Aug 16, 2024
1 parent ea7b784 commit 95e32e6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion jq
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,7 @@ chmod +x cleanup

# Disable vignettes on oldrel due to https://github.com/yihui/knitr/issues/2338
if [ "${R_VERSION:0:3}" = "4.3" ]; then
echo '1+1' > inst/doc/*.R || true
for each file in inst/doc/*.R do
echo '1+1' > $file || true
done
fi
5 changes: 3 additions & 2 deletions libgit2
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ chmod +x cleanup

# Disable vignettes on oldrel due to https://github.com/yihui/knitr/issues/2338
if [ "${R_VERSION:0:3}" = "4.3" ]; then
echo 'library("gert")' > inst/doc/*.R || true
echo '123' > inst/doc/*.Rmd || true
for each file in inst/doc/*.R do
echo '1+1' > $file || true
done
fi
4 changes: 3 additions & 1 deletion mariadb-connector-c
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,7 @@ chmod +x cleanup

# Disable vignettes on oldrel due to https://github.com/yihui/knitr/issues/2338
if [ "${R_VERSION:0:3}" = "4.3" ]; then
echo '1+1' > inst/doc/*.R || true
for each file in inst/doc/*.R do
echo '1+1' > $file || true
done
fi
5 changes: 3 additions & 2 deletions v8
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ PKG_CFLAGS="-I$BREWDIR/include -DV8_COMPRESS_POINTERS -DV8_ENABLE_SANDBOX"

# Disable vignettes on oldrel due to https://github.com/yihui/knitr/issues/2338
if [ "${R_VERSION:0:3}" = "4.3" ]; then
echo 'library("V8")' > inst/doc/*.R || true
echo '123' > inst/doc/*.Rmd || true
for each file in inst/doc/*.R do
echo '1+1' > $file || true
done
fi

# Skip pointer-compression and sandbox feature tests
Expand Down

0 comments on commit 95e32e6

Please sign in to comment.