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 4EF1848D2F for ; Wed, 24 Apr 2024 20:01:34 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 26A3C68D36B; Wed, 24 Apr 2024 23:01:32 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 83ACD68C4E3 for ; Wed, 24 Apr 2024 23:01:25 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id DE49C28190F0B; Wed, 24 Apr 2024 22:01:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1713988883; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=V7p7/LUbdN5YDT2w5ISc82dknGNHc927b2uBZUTaUxw=; b=smv7V8l4oG5Phh+x60vfgq8eRkt8au1Ny5JgiYWQLMrpseTX6BYk4NKuj2w1YVKNQIgPQl sobyum7RD1eLU1SZukS5vLrHFDuxtATeoZF0AH4GErrkxjHiuTEDGuJ2h5ujQvdIx7hPIB O4Wr7EJ/GWlR2fOPEsBIVM3fPSn09+NQ4uX3driQR5ND/pbK0y6oh24oy5CQysi5LZDFy2 oysMmkJNbRTPRq98O66svR6RrB5oUULMHO/ZsL6RCoqZSQKQMTzz0klbgTlpP/KVMOPIpO AQfmMJjHo9fA8LO/QMriuRKfRKaT1e5J/ZplyQadbfX5cAXwDDbnffxL7QolRg== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Wed, 24 Apr 2024 22:01:08 +0200 Message-ID: <20240424200117.1659-1-timo@rothenpieler.org> X-Mailer: git-send-email 2.43.2 MIME-Version: 1.0 Subject: [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 Cc: Timo Rothenpieler 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: --- 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 ) -- 2.43.2 _______________________________________________ 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".