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 B507A45045 for ; Wed, 24 Apr 2024 20:26:12 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0FF8368D373; Wed, 24 Apr 2024 23:26:09 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 55F4168D17F for ; Wed, 24 Apr 2024 23:26:02 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 272F728190F0B for ; Wed, 24 Apr 2024 22:26:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1713990361; 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=j8O6LLAmAbBPXjDvr9XK7i4wQxrvIl12flymY8HT+vM=; b=pJoGMJ1eBN+9rDY4RTm6JE03/Zx/vvR6e2ojDrcbZD9Gkkgvc3DZhm4dDwkvR2UwS7AHTE jtJqRSmWxnPluOBvwvwPzXkPruk+V67kpI6Hu/2wQ7CthxdfksiRur31jluXivXqQ/m1Up TnDNgaNs7fFjL8y7ovuwIDhrUyAERGFEyUeUZuEEX60fHuUhrCzXPc8EgBNhJKzZzO+Xxa e9lCX3aBw+LpexibjaHKTcFfC2v7es9RndjB83HPN+w285uo0RhgnTtsEKmtHhkcPPd4CR RjKJFC89matRFOOg9dA95schS9uhsIW/dCnZBFpggtilg9YzcDq2gDd3FujRcw== Message-ID: Date: Wed, 24 Apr 2024 22:26:04 +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: 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:12, Alexander Strasser via ffmpeg-devel wrote: > 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 >> ) > If you manually clone the repo, you can use whatever you like anyway, since it never actually uses the URL for anything after the initial clone. _______________________________________________ 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".