summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2021-06-04 12:38:29 +0300
committerJordan Petridis <jordan@centricular.com>2021-06-04 12:53:04 +0300
commit92c7258a8280842465dd9c5d40ae6c2c5de60b5b (patch)
tree21398e468dd397e77eeaef042635c1cc09c50af6
parent8aa710f6b8af5fd4e541077b2c0835e3382a1158 (diff)
docker/fedora: Fix find cli arg in prepare.sh script
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/406>
-rw-r--r--docker/fedora/prepare.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/fedora/prepare.sh b/docker/fedora/prepare.sh
index c645b69..eb053ae 100644
--- a/docker/fedora/prepare.sh
+++ b/docker/fedora/prepare.sh
@@ -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 \ No newline at end of file