Skip to content

Commit

Permalink
build: use a dedicated venv to install meson and ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
mbouron committed Feb 2, 2024
1 parent e0d21f1 commit 34300ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/appimage/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ git diff-index --quiet HEAD

./configure.py --download-only

pip install --user ninja meson
export PATH="$HOME/.local/bin:$PATH"
python -m venv tmp-venv
. tmp-venv/bin/activate

pip install ninja meson

here="$(pwd)"
appimagedir="$here/appimage"
Expand Down

0 comments on commit 34300ed

Please sign in to comment.