• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3spongify_logs() {
4  local f
5  while read -r f; do
6    mkdir "${f%.xml}"
7    cp "$f" "${f%.xml}/sponge_log.xml"
8  done < <(find "${KOKORO_ARTIFACTS_DIR:-.}" -name 'TEST-*.xml')
9}
10