From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 42D2648D60 for ; Wed, 24 Apr 2024 20:12:55 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 68F9F68D36B; Wed, 24 Apr 2024 23:12:52 +0300 (EEST) Received: from mout.gmx.net (mout.gmx.net [212.227.15.19]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6BFD868CE03 for ; Wed, 24 Apr 2024 23:12:46 +0300 (EEST) X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from metallschleimette ([91.62.13.127]) by mail.gmx.net (mrgmx005 [212.227.17.190]) with ESMTPSA (Nemesis) id 1N7iCW-1smiit2XIY-014m6P for ; Wed, 24 Apr 2024 22:12:45 +0200 Date: Wed, 24 Apr 2024 22:12:44 +0200 To: FFmpeg development discussions and patches Message-ID: References: <20240424200117.1659-1-timo@rothenpieler.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20240424200117.1659-1-timo@rothenpieler.org> X-Provags-ID: V03:K1:zLx7uM3z/V+mvY8/qjMn+KXj5ampMT5+SYO6t1Z8+zXFPDFB8dP vafNMl+Jptp5okTPS3LYNsmXsPwBK5OLewARgB6XjYY1jgA6cCPlC+MNcIRiM/7Q3t1QxT8 oHi7h418VJYArpjY+0y70ZeRtxLFeIS03WUlhtbFhn9AFD+Z55dPA56GQfS1b8X8W5+Gjil 29fJ0KxePOY7wI0d9HViQ== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:wUqtm5W0QUM=;zWOYORUjdz8gEu9IinPjQh/stC2 TWdvLaYo1dg1lXpWw0AeaoCbTM+1BuFGCAx8awlDmqBm4eWq2Ttmz4ixCf9wMjqYQpEUpUcwg 3sodeaJURlMxmpMrgClw4Uv7cqOJUKQdEhQoq3mqIGtT3AqoHOefD5UnpXU/ruVk3HVUUPWM9 pX3cTTCzN5Xd87XsO0TM5W2MgawI8UOMVhG7enCRRP7e1ZTneWVmv0qLTexg3DoBGclkU3vJR u9WQQ+M16lnbtwLPOXaHScogYtko7YmDDUnIPEZKmNBVnbdhn3aKwNv/QPSoEdD67cGiCbVmL MjS1igmQUGXYoZxOtam5wb1TM7p2bf88Vj9Kcm+vtHndTCf9TrfJDdEB72/5vUii4j1UGM44O VQ83n2JZbJp7ER1vDfE5jUUtJJSoYHLj4WdJ2371VkdcbC84vFkTaYOFfSg1BCeDbXCeAFQtB SjFRZzzfGQG/IKONiEWh5YGOPa0vgTpszv7WJOW0A9r7PJVFlFi/Mr4oQO53KFYGNEF9V4gIx DV98DEfOS9+4Vzy6xcMMXyCesCChZ5vlprFuBjm7iyEa6Mcv8KuLV1yX7rKdDUa987NlQQOW5 +hyJWWoO/82coyg+bIEnJ1cTJbl24PnsgvhwfckR/Yk9bvW+bAUOLqrzbi80jEGrZPUzRGDDj kYsRHKMMpxrN5h6Oc/UmBsp/EJE/KMIcFgPbuF5YP6JoOxPiwbckalnhMFcSDVDCcu6/+/AP2 63yCNBJ9JTXmIrKom9aIkrLWJNI7LtX7sXpU5c7dOS043zpAIrB6oRn2+8iyMTGaLQGZSaBL9 CQ32SXu/utDJMd9OAw96o+fIqZC781XDxbx59gOxKV1bQ= Subject: Re: [FFmpeg-devel] [PATCH] fate: allow https for git URLs X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Alexander Strasser via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Alexander Strasser Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 2024-04-24 22:01 +0200, Timo Rothenpieler wrote: > --- > tests/fate.sh | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/fate.sh b/tests/fate.sh > index c5ee18de80..4081e865ae 100755 > --- a/tests/fate.sh > +++ b/tests/fate.sh > @@ -30,14 +30,14 @@ lock(){ > checkout(){ > case "$repo" in > file:*|/*) src="${repo#file:}" ;; > - git:*) git clone --quiet --branch "$branch" "$repo" "$src" ;; > + git:*|https:*) git clone --quiet --branch "$branch" "$repo" "$src" ;; > esac > } > > update()( > cd ${src} || return > case "$repo" in > - git:*) git fetch --quiet --force && git reset --quiet --hard "origin/$branch" ;; > + git:*|https:*) git fetch --quiet --force && git reset --quiet --hard "origin/$branch" ;; > esac > ) Should be OK if tested to work with both git and https URLs in repo. Alexander _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".