From: Kevin Albertson Date: Tue, 20 May 2025 00:04:29 +0000 (-0400) Subject: revise Unix `PATH` setting X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2^2~29^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bfb491ce56cc900ede4a016b93ba7e16388152c2;p=utf8proc.git revise Unix `PATH` setting Remove unneeded export. Prefix `PATH` to avoid referring unintentional binaries. Co-authored-by: Sutou Kouhei --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index db6262e..52f3b80 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -82,5 +82,5 @@ jobs: cmake --install build --prefix tmp/install cmake -S test/app -B test/app/build -DCMAKE_INSTALL_PREFIX=tmp/install -G'MSYS Makefiles' cmake --build test/app/build - export PATH="$PATH:$(pwd)/tmp/install/bin" + PATH="$(pwd)/tmp/install/bin:$PATH" test/app/build/app.exe