Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Corrected File Copy Paths Update README.md #1279

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

0xbryer
Copy link

@0xbryer 0xbryer commented Dec 26, 2024

Description:

While reviewing the setup scripts, I noticed an issue with the file copy commands for protoc. The original commands were:

cp -r $HOME/protoc/include /usr/local
cp -r $HOME/protoc/bin /usr/local

This approach doesn't place the files in their intended locations and can lead to an incorrect directory structure.

I've updated the commands to:

cp -r $HOME/protoc/include/* /usr/local/include/
cp $HOME/protoc/bin/* /usr/local/bin/

This ensures the header files are copied directly into /usr/local/include/ and binaries into /usr/local/bin/.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant