mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Clean target tries to remove files multiples times. Limit find max depth to not try to remove files more than once. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
9 lines
172 B
Makefile
9 lines
172 B
Makefile
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
clean:
|
|
find . -maxdepth 2 -type d -name '*home:katacontainers*' -exec sudo rm -rf {} \;
|