mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
fb0677ad57
* chore: clenaup before bazel-contrib handoff * chore: apply lint fixes --------- Co-authored-by: Alex Eagle <alex@aspect.dev>
13 lines
275 B
Bash
Executable file
13 lines
275 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
mkdir -p $(dirname "$1")
|
|
outfile=$1
|
|
rm -f "$outfile"
|
|
for each in $@; do
|
|
sanitized=${each/darwin/PLATFORM}
|
|
sanitized=${sanitized/k8/PLATFORM}
|
|
sanitized=${sanitized/_arm64/}
|
|
echo "$sanitized" >>"$outfile"
|
|
done
|