Skip to content

Commit 9c4b013

Browse files
committed
Fixed PATH var from /usr/bin
1 parent c660988 commit 9c4b013

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/linux-appimage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ jobs:
3535
run: |
3636
git clone --depth=1 --branch v0.18.0 https://gitlab.gnome.org/GNOME/blueprint-compiler.git
3737
cd blueprint-compiler
38+
export PATH="/usr/bin:$PATH"
3839
env PYTHON=/usr/bin/python3 meson setup build
3940
ninja -C build
4041
sudo meson install -C build
41-
which blueprint-compiler && blueprint-compiler --version
42+
which blueprint-compiler && env PATH="/usr/bin:$PATH" blueprint-compiler --version
4243
4344
- name: Build AppImage
4445
run: |

0 commit comments

Comments
 (0)