docker/fedora: Fix find cli arg in prepare.sh script
authorJordan Petridis <jordan@centricular.com>
Fri, 4 Jun 2021 09:38:29 +0000 (12:38 +0300)
committerJordan Petridis <jordan@centricular.com>
Fri, 4 Jun 2021 09:53:04 +0000 (12:53 +0300)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/406>

docker/fedora/prepare.sh

index c645b69..eb053ae 100644 (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 1maxdepth 1 -type d);
+for i in $(find subprojects/ -mindepth 1 -maxdepth 1 -type d);
 do
     git -C $i gc --aggressive || true;
 done
\ No newline at end of file