summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/clean_tests.sh
blob: adf54f9b02df95ea430edf7d3775e73a1e734edc (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# Copyright 2017 Yahoo Holdings. 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