Skip to content

Commit 372668f

Browse files
committed
Refactor AppImageBuilder.yml to use 'env' for setting PATH in build commands, enhancing script clarity and consistency.
1 parent afcb5d8 commit 372668f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

AppImageBuilder.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ AppDir:
5858
script:
5959
- git clone --depth=1 --branch v0.18.0 https://gitlab.gnome.org/GNOME/blueprint-compiler.git
6060
- cd blueprint-compiler && meson setup build && ninja -C build && meson install -C build --destdir ../AppDir && cd ..
61-
- export PATH="$PWD/AppDir/usr/local/bin:$PWD/AppDir/usr/bin:$PATH"
62-
- meson setup --prefix=/usr builddir
63-
- meson install -C builddir --destdir AppDir
61+
- env PATH="$PWD/AppDir/usr/local/bin:$PWD/AppDir/usr/bin:$PATH" meson setup --prefix=/usr builddir
62+
- env PATH="$PWD/AppDir/usr/local/bin:$PWD/AppDir/usr/bin:$PATH" meson install -C builddir --destdir AppDir
6463
- glib-compile-schemas AppDir/usr/share/glib-2.0/schemas || true
6564

6665
AppImage:

0 commit comments

Comments
 (0)