Skip to content

Commit

Permalink
[#3729] Add meson.sh to pull fixed meson version
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-pavel committed Feb 17, 2025
1 parent bf3d5aa commit 0b4ca4d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions meson.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh

if test ! -d venv; then
python3 -m venv ./venv
./venv/bin/pip install --upgrade pip
./venv/bin/pip install git+https://github.com/serebit/meson.git@iterative-transitive-link-dep-resolve
fi
# shellcheck disable=SC1091
# SC1091: Not following: ... was not specified as input (see shellcheck -x).
. ./venv/bin/activate

meson "${@}"

0 comments on commit 0b4ca4d

Please sign in to comment.