#!/bin/bash # SPDX-License-Identifier: GPL-2.0-or-later source ./common.sh LIBCAMERA=${1:-$(srcdir libcamera)} check_version $LIBCAMERA $ID echo "Mirroring libcamera at version : " $(libcamera_version "$LIBCAMERA") sed -e '/#.*/d' -e '/^$/d' libcamera-mirrors | while read remote ; do echo "Mirroring to remote : " $remote git -C $LIBCAMERA push -f $remote master:refs/heads/master done completed $ID