Add --bpf-out-dir argument to control where the final build products land
This commit is contained in:
committed by
mergify[bot]
parent
4669fa0f98
commit
b169d9cfbe
@ -29,6 +29,11 @@ if ! command -v readelf > /dev/null; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -e
|
||||
out_dir=$(dirname "$dump")
|
||||
if [[ ! -d $out_dir ]]; then
|
||||
mkdir -p "$out_dir"
|
||||
fi
|
||||
dump_mangled=$dump.mangled
|
||||
|
||||
(
|
||||
|
Reference in New Issue
Block a user