Deploy Shiny App with a scheduled script
问题 I have a simple script that in Rstudio works to deploy app: rsconnect::setAccountInfo(name='xx', token='xx', secret='xx/xx') library(rsconnect) deployApp("xxx",launch.browser = FALSE) After this prompt appears: Update application currently deployed at https://xxx.shinyapps.io/xx/? that block my scheduled script. There's a way to skip this request and update the shiny app without manually type "Y" in the Console? 回答1: Adding to what waskuf said, try adding forceUpdate = T to your code.