We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35ec809 commit 0328055Copy full SHA for 0328055
R/dash.R
@@ -614,11 +614,7 @@ Dash <- R6::R6Class(
614
# this calls getAppPath, which will try three approaches to
615
# identifying the local app path (depending on whether the app
616
# is invoked via script, source(), or executed directly from console)
617
- private$app_root_modtime <- as.integer(
618
- max(
619
- file.info(
620
- list.files(getAppPath(),
621
- recursive=TRUE))$mtime))
+ private$app_root_modtime <- modtimeFromPath(getAppPath(), recursive = TRUE)
622
623
if (is.null(dev_tools_ui) && debug || isTRUE(dev_tools_ui)) {
624
self$config$ui <- TRUE
0 commit comments