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 b4dc5b1 commit 9a3efd9Copy full SHA for 9a3efd9
R/buildtools.R
@@ -401,6 +401,11 @@ install_dependencies <- function(path = '.'){
401
if(isTRUE('rJava' %in% rundeps)){
402
file.create('/NEED_RJAVA')
403
}
404
+
405
+ # This does not include 'suggests'
406
+ if(isTRUE('quarto' %in% c(rundeps, desc$Package))){
407
+ file.create('/NEED_QUARTO')
408
+ }
409
if(isTRUE(any(c('rjags', 'runjags') %in% c(rundeps, desc$Package)))){
410
if(!require('rjags'))
411
utils::install.packages('rjags')
shims/quarto
@@ -1,3 +1,4 @@
1
#!/bin/sh
2
touch /NEED_QUARTO
3
+echo "Recording quarto use" 1>&2
4
exec /usr/local/bin/quarto "$@"
0 commit comments