Skip to content

Commit

Permalink
fix: use deparsed path
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Cheng <[email protected]>
  • Loading branch information
gadenbuie and jcheng5 authored Apr 19, 2024
1 parent 8df93a4 commit e908cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rscripts/runShinyApp.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ if (devmode) {

message("Running Shiny app")
message("-----------------")
message(sprintf('shiny::runApp("%s", port = %d)\n', path, port))
message(sprintf('shiny::runApp(%s, port = %d)\n', deparse(path), port))

shiny::runApp(path, port = port, launch.browser = FALSE)

0 comments on commit e908cd7

Please sign in to comment.