grpc-java/buildscripts/kokoro/kokoro.sh

10 lines
191 B
Bash
Executable File

#!/bin/bash
spongify_logs() {
local f
while read -r f; do
mkdir "${f%.xml}"
cp "$f" "${f%.xml}/sponge_log.xml"
done < <(find "${KOKORO_ARTIFACTS_DIR:-.}" -name 'TEST-*.xml')
}