if install_client not if not install_client. Fixes clients not being installed when running with -a option.

Signed-off-by: Scott Zawalski <scottz@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@3869 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/utils/compile_gwt_clients.py b/utils/compile_gwt_clients.py
index ca9d64b..15c7c21 100644
--- a/utils/compile_gwt_clients.py
+++ b/utils/compile_gwt_clients.py
@@ -102,7 +102,7 @@
     print 'Compiling client %s' % project_client
     try:
         utils.run(cmd, verbose=True)
-        if not install_client:
+        if install_client:
             return install_completed_client(java_args['compile_dir'],
                                             project_client)
         return True