docker/fedora: Fix find cli arg in prepare.sh script

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/406>
This commit is contained in:
Jordan Petridis 2021-06-04 12:38:29 +03:00
parent 8aa710f6b8
commit 92c7258a82

View file

@ -237,7 +237,7 @@ cd /gst-build
meson subprojects download
# Run git gc to prune unwanted refs and reduce the size of the image
for i in $(find subprojects/ -mindepth 1- maxdepth 1 -type d);
for i in $(find subprojects/ -mindepth 1 -maxdepth 1 -type d);
do
git -C $i gc --aggressive || true;
done