Skip to content

Commit

Permalink
improve formatting of application update prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Oct 4, 2013
1 parent e4f32b6 commit f43bdcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/deployApp.R
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ applicationForTarget <- function(lucid, accountInfo, target) {
# if there is no record of deploying this application locally however there
# is an application of that name already deployed then confirm
if (!target$isUpdate && !is.null(app) && interactive()) {
prompt <- paste("\nUpdate existing application at ", app$url,
prompt <- paste("\nUpdate application currently deployed at\n", app$url,
"? [Y/n] ", sep="")
input <- readline(prompt)
if (nzchar(input) && !identical(input, "y") && !identical(input, "Y"))
Expand Down

0 comments on commit f43bdcf

Please sign in to comment.