This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 61277dcd85 build_h3_tools: fix path navigation (#9909)
61277dcd85 is described below

commit 61277dcd85e87531f72d4edb8635f6b266eb0d51
Author: Brian Neradt <[email protected]>
AuthorDate: Sat Jun 24 16:51:45 2023 -0500

    build_h3_tools: fix path navigation (#9909)
    
    After changing into boringssl, we then create a build directory and
    change into that. So, once done building boringssl, we have to go up two
    directories. Otherwise the rest of the git clones are inside the
    boringssl repo.
---
 tools/build_h3_tools.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/build_h3_tools.sh b/tools/build_h3_tools.sh
index 695d92b76b..608e215a96 100755
--- a/tools/build_h3_tools.sh
+++ b/tools/build_h3_tools.sh
@@ -124,7 +124,7 @@ cmake \
 
 ${MAKE} -j ${num_threads}
 sudo ${MAKE} install
-cd ..
+cd ../..
 
 # Build quiche
 # Steps borrowed from: 
https://github.com/apache/trafficserver-ci/blob/main/docker/rockylinux8/Dockerfile

Reply via email to