summaryrefslogtreecommitdiff
path: root/release.sh
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2016-11-11 15:45:25 +0000
committerPeter Hutterer <peter.hutterer@who-t.net>2016-11-18 16:50:32 +1000
commita30fcba3eae262c2ef984109c180aa41d85a0c2c (patch)
treeeddc46cb00feb1c0305003c3df277cbfee84b680 /release.sh
parentda83d8044d02314ebf6a8802eb4796964dc9e7eb (diff)
release.sh: add a couple more info messages
This way one can relate the exact stage they are and the possible password prompt they'll see (if the ssh/gpg agent has timed out). Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'release.sh')
-rwxr-xr-xrelease.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/release.sh b/release.sh
index 620b5a4..fbdac28 100755
--- a/release.sh
+++ b/release.sh
@@ -580,6 +580,7 @@ process_module() {
# srv_path="~/public_html$srv_path"
# Check that the server path actually does exist
+ echo "Info: checking if path exists on web server:"
ssh $USER_NAME$hostname ls $srv_path >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Error: the path \"$srv_path\" on the web server does not exist."
@@ -589,6 +590,7 @@ process_module() {
# Check for already existing tarballs
for tarball in $targz $tarbz2 $tarxz; do
+ echo "Info: checking if tarball $tarball already exists on web server:"
ssh $USER_NAME$hostname ls $srv_path/$tarball >/dev/null 2>&1
if [ $? -eq 0 ]; then
if [ "x$FORCE" = "xyes" ]; then