mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-22 09:19:06 +08:00
Don't wrap LIBBPF_PATHS[@] and LIBBPF_VIEW_PATHS[@] in quotes when passing it to git commands. Not clear how it worked before, but something recently broke. Either git commands became stricter or something. But either way, we do want to pass each element of LIBBPF_PATHS or LIBBPF_VIEW_PATHS as separate command line arguments, so putting them in quotes doesn't make sense, as that makes them look like a single argument to git. So drop all the quotes around these arrays. The only place where it's still needed is in commit_signature call, as we do want to pass array as single arg ($2) and then internally we unfold it into multiple command line arguments. Signed-off-by: Andrii Nakryiko <andrii@kernel.org>