From: Kevin Albertson Date: Tue, 20 May 2025 00:02:01 +0000 (-0400) Subject: revise Powershell PATH setting X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2^2~29^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c3049626e239e5e1186c33836838326162ed77cc;p=utf8proc.git revise Powershell PATH setting Use capital `$Env` instead of `$env` to match conventions. Prefix `PATH` to avoid referring unintentional binaries. Prefer `\` over `/` to match conventions. Co-authored-by: Sutou Kouhei --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 52b3c40..7139f6e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -39,7 +39,7 @@ jobs: cmake --install build --prefix tmp/install --config Debug cmake -S test/app -B test/app/build -DCMAKE_INSTALL_PREFIX=tmp/install cmake --build test/app/build - $env:PATH+=";$PWD/tmp/install/bin" + $Env:PATH = "$PWD\tmp\install\bin;$Env:PATH" test/app/build/Debug/app.exe - name: Test Consuming (Unix) if: ${{ matrix.os != 'windows-latest' }}