[libcxx-commits] [libcxx] c01202a - [libc++] Fix typo in	run-buildbot
    Louis Dionne via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Thu Jan  7 14:37:41 PST 2021
    
    
  
Author: Louis Dionne
Date: 2021-01-07T17:37:09-05:00
New Revision: c01202a7efdd73fed280755184762b0ef8a5b78a
URL: https://github.com/llvm/llvm-project/commit/c01202a7efdd73fed280755184762b0ef8a5b78a
DIFF: https://github.com/llvm/llvm-project/commit/c01202a7efdd73fed280755184762b0ef8a5b78a.diff
LOG: [libc++] Fix typo in run-buildbot
The installation directory was never meant to contain a brace.
Added: 
    
Modified: 
    libcxx/utils/ci/run-buildbot
Removed: 
    
################################################################################
diff  --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 3a394de4f2d0..8b5dd46f697c 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -58,7 +58,7 @@ done
 
 MONOREPO_ROOT="${MONOREPO_ROOT:="$(git rev-parse --show-toplevel)"}"
 BUILD_DIR="${BUILD_DIR:=${MONOREPO_ROOT}/build/${BUILDER}}"
-INSTALL_DIR="${BUILD_DIR}/install}"
+INSTALL_DIR="${BUILD_DIR}/install"
 
 function clean() {
     rm -rf "${BUILD_DIR}"
        
    
    
More information about the libcxx-commits
mailing list