<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/795c10d1191e10db49420c027fce5b88e14fcadc">https://github.com/macports/macports-ports/commit/795c10d1191e10db49420c027fce5b88e14fcadc</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 795c10d1191 CI: Stop fetching PortIndex.quick
</span>795c10d1191 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 795c10d1191e10db49420c027fce5b88e14fcadc
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Fri Aug 23 17:23:56 2024 +1000

<span style='display:block; white-space:pre;color:#404040;'>    CI: Stop fetching PortIndex.quick
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    In 2.10 it is once again generated by portindex if missing, which is
</span><span style='display:block; white-space:pre;color:#404040;'>    extremely fast.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Partially reverts f04828f.
</span>---
 .github/workflows/bootstrap.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/.github/workflows/bootstrap.sh b/.github/workflows/bootstrap.sh
</span><span style='display:block; white-space:pre;color:#808080;'>index 356339905b0..698f35e499d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/.github/workflows/bootstrap.sh
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/.github/workflows/bootstrap.sh
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -41,7 +41,7 @@ echo "Fetching MacPorts..."
</span> curl_mpbase_pid=$!
 PORTINDEX_URL="https://ftp.fau.de/macports/release/ports/PortIndex_darwin_${OS_MAJOR}_${OS_ARCH}/PortIndex"
 echo "Fetching PortIndex from $PORTINDEX_URL ..."
<span style='display:block; white-space:pre;background:#ffe0e0;'>-/usr/bin/curl -fsSLo ports/PortIndex -o ports/PortIndex.quick "$PORTINDEX_URL" "${PORTINDEX_URL}.quick" &
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+/usr/bin/curl -fsSLo ports/PortIndex "$PORTINDEX_URL" &
</span> curl_portindex_pid=$!
 endgroup
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -130,11 +130,11 @@ begingroup "Updating PortIndex"
</span> git -C ports/ remote add macports https://github.com/macports/macports-ports.git
 git -C ports/ fetch macports master
 git -C ports/ checkout -qf macports/master~10
<span style='display:block; white-space:pre;background:#e0ffe0;'>+git -C ports/ checkout -qf -
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+git -C ports/ checkout -qf "$(git -C ports/ merge-base macports/master HEAD)"
</span> if ! wait $curl_portindex_pid; then
     echo "Fetching PortIndex failed: $?"
 fi
<span style='display:block; white-space:pre;background:#ffe0e0;'>-git -C ports/ checkout -qf -
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-git -C ports/ checkout -qf "$(git -C ports/ merge-base macports/master HEAD)"
</span> ## Ignore portindex errors on common ancestor
 (cd ports/ && portindex)
 git -C ports/ checkout -qf -
</pre><pre style='margin:0'>

</pre>