Browse Source

Tuning verbosity

Hamilton Turner 10 years ago
parent
commit
096c409b35
2 changed files with 2 additions and 2 deletions
  1. 1 1
      toolset/run-ci.py
  2. 1 1
      toolset/setup/linux/installer.py

+ 1 - 1
toolset/run-ci.py

@@ -305,7 +305,7 @@ class CIRunnner:
     names = ' '.join(self.names)
     command = 'toolset/run-tests.py '
     if self.mode == 'prereq':
-      command = command + "--install server --install-only --test ''"
+      command = command + "--install server --install-only --test '' --verbose"
     elif self.mode == 'install':
       command = command + "--install server --install-only --test %s" % names
     elif self.mode == 'verify':

+ 1 - 1
toolset/setup/linux/installer.py

@@ -121,7 +121,7 @@ class Installer:
       # Move back to previous directory
       os.chdir(previousDir)
 
-    self.__run_command("sudo apt-get -y autoremove");    
+    self.__run_command("sudo apt-get -yq autoremove");    
 
     print("\nINSTALL: Finished installing server software\n")
   ############################################################