From 4c0d0177d93792c60bc7c8e940e930540127c81b Mon Sep 17 00:00:00 2001 From: Twig6943 <119701717+Twig6943@users.noreply.github.com> Date: Fri, 6 Mar 2026 05:26:05 +0300 Subject: [PATCH] Update linux.yml --- .github/workflows/linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c71fba67b..7ef9e841e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -31,7 +31,7 @@ jobs: run: | sudo -u builder sh <<'EOF' set -e - export XDG_RUNTIME_DIR=/run/user/$UID + export XDG_RUNTIME_DIR=/tmp/runtime-$UID mkdir -p "$XDG_RUNTIME_DIR" chmod 700 "$XDG_RUNTIME_DIR" export WINE=$(command -v wine64 || command -v wine || false) @@ -40,7 +40,7 @@ jobs: ./msvc-wine/vsdownload.py --accept-license --dest $(pwd)/my_msvc/opt/msvc ./msvc-wine/install.sh $(pwd)/my_msvc/opt/msvc export PATH=$(pwd)/my_msvc/opt/msvc/bin/x64:$PATH - msbuild MinecraftConsoles.sln /p:Configuration=Release /p:Platform="Windows64" + ./my_msvc/opt/msvc/bin/x64/msbuild MinecraftConsoles.sln /p:Configuration=Release /p:Platform="Windows64" ls -l EOF