From 92c7258a8280842465dd9c5d40ae6c2c5de60b5b Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Fri, 4 Jun 2021 12:38:29 +0300 Subject: [PATCH] docker/fedora: Fix find cli arg in prepare.sh script Part-of: --- docker/fedora/prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/fedora/prepare.sh b/docker/fedora/prepare.sh index c645b69b97..eb053ae34b 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