From fc368dc29140cd47aba5f05e85044bd437c05072 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 12 Mar 2021 13:14:55 +0100 Subject: [PATCH] makebuildserver: print message before rsyncing caches This process can take a very long time if the caches are large, so at least print something about what it is doing. --- makebuildserver | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makebuildserver b/makebuildserver index 3e34494b..7147fb1e 100755 --- a/makebuildserver +++ b/makebuildserver @@ -569,6 +569,8 @@ def main(): for d in ('.m2', '.gradle/caches', '.gradle/wrapper', '.pip_download_cache'): fullpath = os.path.join(os.getenv('HOME'), d) + os.system('date') + print('rsyncing', fullpath, 'into VM') if os.path.isdir(fullpath): ssh_command = ' '.join(('ssh -i {0} -p {1}'.format(key, port), '-o StrictHostKeyChecking=no',