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