From: Ian Jackson Date: Sat, 10 Aug 2019 18:20:30 +0000 (+0100) Subject: dgit: update-vcs-git: Print a less confusing message if unchanged X-Git-Tag: archive/debian/9.7~5 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=7341dfbf9bf8cf5215b4dfb0ef2236f9fb5aa9a1;p=dgit.git dgit: update-vcs-git: Print a less confusing message if unchanged Previously, we would say it was "already configured" which is unspecific and sounds a bit like an error. Signed-off-by: Ian Jackson --- diff --git a/dgit b/dgit index d57b6435..5c046388 100755 --- a/dgit +++ b/dgit @@ -4980,7 +4980,7 @@ sub cmd_update_vcs_git () { print STDERR f_ "setting up vcs-git: %s\n", $url; @cmd = (@git, qw(remote add vcs-git), $url); } elsif ($orgurl eq $url) { - print STDERR f_ "vcs git already configured: %s\n", $url; + print STDERR f_ "vcs git unchanged: %s\n", $url; } else { print STDERR f_ "changing vcs-git url to: %s\n", $url; @cmd = (@git, qw(remote set-url vcs-git), $url);