[zorg] r223706 - Fix typo causing source tree detection to fail
Chris Matthews
cmatthews5 at apple.com
Mon Dec 8 14:50:53 PST 2014
Author: cmatthews
Date: Mon Dec 8 16:50:53 2014
New Revision: 223706
URL: http://llvm.org/viewvc/llvm-project?rev=223706&view=rev
Log:
Fix typo causing source tree detection to fail
Modified:
zorg/trunk/zorg/jenkins/build.py
Modified: zorg/trunk/zorg/jenkins/build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/build.py?rev=223706&r1=223705&r2=223706&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Mon Dec 8 16:50:53 2014
@@ -226,7 +226,7 @@ def check_repo_state(path):
logging.info("Detecting repos in {}".format(path))
for r in ['llvm', 'clang', 'clang-tools-extra', 'debuginfo-tests', \
'compiler-rt', 'libcxx', 'debuginfo-tests']:
- detected_path = derived_path('llvm', tree_path(tree=llvm, repo=r))
+ detected_path = derived_path('llvm', tree_path(tree='llvm', repo=r))
readme = os.path.join(path, detected_path, readme_name(repo=r))
if os.path.exists(readme):
logging.info(" - {} found at {}".format(r, detected_path))
More information about the llvm-commits
mailing list