mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
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:
parent
8aa710f6b8
commit
92c7258a82
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ cd /gst-build
|
||||||
meson subprojects download
|
meson subprojects download
|
||||||
|
|
||||||
# Run git gc to prune unwanted refs and reduce the size of the image
|
# 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
|
do
|
||||||
git -C $i gc --aggressive || true;
|
git -C $i gc --aggressive || true;
|
||||||
done
|
done
|
Loading…
Reference in a new issue