[zorg] r368335 - [monorepo] Fix indentation

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 8 13:14:21 PDT 2019


Author: jdevlieghere
Date: Thu Aug  8 13:14:21 2019
New Revision: 368335

URL: http://llvm.org/viewvc/llvm-project?rev=368335&view=rev
Log:
[monorepo] Fix indentation

Modified:
    zorg/trunk/zorg/jenkins/monorepo_build.py

Modified: zorg/trunk/zorg/jenkins/monorepo_build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/monorepo_build.py?rev=368335&r1=368334&r2=368335&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/monorepo_build.py (original)
+++ zorg/trunk/zorg/jenkins/monorepo_build.py Thu Aug  8 13:14:21 2019
@@ -465,29 +465,29 @@ def lldb_cmake_builder(target):
                           '-DCMAKE_CXX_COMPILER=' + conf.CC() + "++"])
 
     if target == 'all' or target == 'build':
-	header("Cmake")
-	run_cmd(conf.lldbbuilddir(), cmake_cmd)
-	footer()
-
-	header("Build")
-	run_cmd(conf.lldbbuilddir(), [NINJA, '-v'])
-	footer()
+        header("Cmake")
+        run_cmd(conf.lldbbuilddir(), cmake_cmd)
+        footer()
+
+        header("Build")
+        run_cmd(conf.lldbbuilddir(), [NINJA, '-v'])
+        footer()
 
     if target == 'all' or target == 'install':
-	header("Install")
-	run_cmd(conf.lldbbuilddir(), [NINJA, '-v', 'install'])
-	footer()
+        header("Install")
+        run_cmd(conf.lldbbuilddir(), [NINJA, '-v', 'install'])
+        footer()
 
     if target == 'all' or target == 'testlong':
-	header("Run Debug Info Tests")
-	run_cmd(conf.lldbbuilddir(), [NINJA, '-v', 'check-debuginfo'])
-	footer()
+        header("Run Debug Info Tests")
+        run_cmd(conf.lldbbuilddir(), [NINJA, '-v', 'check-debuginfo'])
+        footer()
 
     if target == 'all' or target == 'test' or target == 'testlong':
-	header("Run Tests")
-	run_cmd(conf.lldbbuilddir(), ['/usr/bin/env', 'TERM=vt100', NINJA, '-v',
-				      'check-lldb'])
-	footer()
+        header("Run Tests")
+        run_cmd(conf.lldbbuilddir(),
+                ['/usr/bin/env', 'TERM=vt100', NINJA, '-v', 'check-lldb'])
+        footer()
 
 
 def static_analyzer_benchmarks_builder():




More information about the llvm-commits mailing list