aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/clean_tests.sh
blob: 11eb5467a7202c014b4b055f88620027fa6f1c66 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
for file in *
do
  if [ -d "$file" ]; then
    (cd "$file" && make clean && echo "$file cleaned")
  fi
done