We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/~https://github.com/iovisor/ubpf#checking-out says:
git submodule init git submodule update --recursive
However that only does an init at the top level, not recursively, and as a result elfio is not initialized and so the build fails.
Instead the two lines should be replaced with one line:
git submodule update --init --recursive
Which indeed is what the CICD actually does.
The text was updated successfully, but these errors were encountered:
Correct instructions for submodule initialization
5bc5c02
This PR updates the PR with the correct command to initialize submodules recursively. Fixes #361 Signed-off-by: Dave Thaler <dthaler@microsoft.com>
Correct instructions for submodule initialization (#362)
8e3b87c
Successfully merging a pull request may close this issue.
/~https://github.com/iovisor/ubpf#checking-out says:
However that only does an init at the top level, not recursively, and as a result elfio is not initialized and so the build fails.
Instead the two lines should be replaced with one line:
Which indeed is what the CICD actually does.
The text was updated successfully, but these errors were encountered: