mirror of
https://github.com/rocky-linux/peridot.git
synced 2025-01-05 00:30:55 +00:00
16 lines
321 B
Bash
Executable file
16 lines
321 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
source hack/bazel_setup.sh
|
|
|
|
starting_query="attr(tags, 'resf_frontend_bundle',"
|
|
|
|
for t in `cat impacted_targets`; do
|
|
starting_query="$starting_query $t union"
|
|
done
|
|
|
|
starting_query=${starting_query%" union"}
|
|
starting_query="$starting_query)"
|
|
|
|
$BAZEL_B $($BAZEL_QR "$starting_query")
|