Skip to content

Commit

Permalink
Add forceUpdate = TRUE to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke authored Nov 12, 2024
1 parent 137b38e commit d72fb18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ if (opts$all) {
deployApps <- function(app) {
cat('-------- Deploying', app, '--------\n')
if (opts$deploy) {
res <- try(rsconnect::deployApp(app, account = opts$account, server = opts$server))
res <- try(rsconnect::deployApp(app, account = opts$account, server = opts$server, forceUpdate = TRUE))
if (inherits(res, 'try-error')) {
return(1)
}
Expand Down

0 comments on commit d72fb18

Please sign in to comment.