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 0784E4A282 for ; Sat, 27 Apr 2024 21:31:31 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6522F68D2D2; Sun, 28 Apr 2024 00:31:29 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id AFDD06802E2 for ; Sun, 28 Apr 2024 00:31:22 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 2621327FFD708 for ; Sat, 27 Apr 2024 23:31:21 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1714253481; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=CGb1piF/8P7rsbtKnc16+F0RmtBhHN/Ov9QPKdaIUQA=; b=lTUw69kFtZbFytX1Ytrs5PVmIjNZTz2qMUc28DebhQIDsxA3FPs5FsteQpElgCduQmR1ok hAQ2zN3zW6TZzU3KArfgXplBQSRu80BYcl0XezpTw11TwdyNoGOPqV4WqfrbFVqJZa7Pzm RcMSi2InWnVuQQMWG9ga1DyIKt2U3979PoDTOvfF6NHvr5hrSq6LKyw4E64qaKHYwhCNCy lJx40btygTqRC0mrl01NU5O34sxf5nGjL+jKPYD6XR7mh7kqSqsI6rTMIGL1211TB0LhJE gXRgj8TH9pgQeSpxG9TfFoDKJ3wxq6rW/EEDU8D9G2vfoV9ae3RTcRR0tXmyqg== Message-ID: <43254bce-8011-427e-bdc0-a08084f19a32@rothenpieler.org> Date: Sat, 27 Apr 2024 23:31:24 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: ffmpeg-devel@ffmpeg.org References: <20240424200117.1659-1-timo@rothenpieler.org> Content-Language: en-US From: Timo Rothenpieler In-Reply-To: <20240424200117.1659-1-timo@rothenpieler.org> 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: , Reply-To: FFmpeg development discussions and patches Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 24.04.2024 22:01, 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 > ) > applied _______________________________________________ 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".