From 8594c23cb601d242be7feace93f84ea827d6c098 Mon Sep 17 00:00:00 2001 From: such-gitea Date: Mon, 5 Jan 2026 12:21:05 -0800 Subject: [PATCH] triple tap windows with mkdir -p --- .gitea/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f2cb97e..5b9a07c 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -121,7 +121,7 @@ jobs: rm -rf external/monero/contrib/depends/built/x86_64-w64-mingw32/boost rm -rf external/monero/contrib/depends/work/download/boost* - # --- 2. UPGRADE BOOST (The Triple-Tap Fix) --- + # --- 2. UPGRADE BOOST (Triple-Tap Fix with MKDIR) --- - name: Upgrade Boost Version to 1.80.0 run: | echo "Forcing depends to use Boost 1.80.0..." @@ -139,11 +139,11 @@ jobs: # A. Try to delete the line sed -i '/patches/d' $BOOST_MK - # B. Append an empty variable definition to the end (Overrides anything above) + # B. Append an empty variable definition echo "package_patches=" >> $BOOST_MK - # C. TRICK: Overwrite the actual patch file with an empty file - # If the build system insists on finding this file, we give it a blank one. + # C. TRICK: Create the folder FIRST, then the fake file + mkdir -p external/monero/contrib/depends/packages/boost echo "" > external/monero/contrib/depends/packages/boost/fix_aroptions.patch # Debug