Hi osquery team, i found the build process would t...
# general
w
Hi osquery team, i found the build process would tag some files like. why would that happen?
s
That might be because you have switched between branches/commits that had different version of the third party libraries (and their relative submodules). Basically switching branches with
git checkout
, doesn’t automatically updates the submodules. You need to also run
git submodules update --recursive
If you want to see the actual changes, they are not visible from the root folder of the project, but you need to go into one of those
src
folders and do a git diff there.