aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/clean_tests.sh
blob: 1a8fbe6934fc60425599399f422148bbb7d78e36 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# Copyright Vespa.ai. 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