You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by xy...@apache.org on 2022/12/13 16:59:59 UTC

[pulsar-client-cpp] branch main updated: [fix] Use sudo when executing `apt-get install` (#143)

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

xyz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-cpp.git


The following commit(s) were added to refs/heads/main by this push:
     new 39e8a88  [fix] Use sudo when executing `apt-get install` (#143)
39e8a88 is described below

commit 39e8a88ed0ee0055fb75d414faa48ac51e6a6ed1
Author: Zike Yang <zi...@apache.org>
AuthorDate: Wed Dec 14 00:59:52 2022 +0800

    [fix] Use sudo when executing `apt-get install` (#143)
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 33df78a..46204e2 100644
--- a/README.md
+++ b/README.md
@@ -75,7 +75,7 @@ cd pulsar-client-cpp
 #### Install all dependencies:
 
 ```shell
-sudo apt-get update -y && apt-get install -y g++ cmake libssl-dev libcurl4-openssl-dev \
+sudo apt-get update -y && sudo apt-get install -y g++ cmake libssl-dev libcurl4-openssl-dev \
                 libprotobuf-dev libboost-all-dev libgtest-dev libgmock-dev \
                 protobuf-compiler
 ```