Add hint for client deletion to r8_release.py
Change-Id: Ie8e3a9743ef12c11eef53bc9318b155c1f90e5bd
diff --git a/tools/r8_release.py b/tools/r8_release.py
index acc70ed..ba87676 100755
--- a/tools/r8_release.py
+++ b/tools/r8_release.py
@@ -457,8 +457,9 @@
if not args.use_existing_work_branch:
clients = subprocess.check_output('g4 myclients', shell=True)
if ':%s:' % client_name in clients:
- print ("Remove the existing '%s' client before continuing, " +
- "or use option --use-existing-work-branch.") % client_name
+ print ("Remove the existing '%s' client before continuing " +
+ "(force delete: 'g4 citc -d -f %s'), " +
+ "or use option --use-existing-work-branch.") % (client_name, client_name)
sys.exit(1)