Skip to content

Commit 0b4ca4d

Browse files
committed
[#3729] Add meson.sh to pull fixed meson version
1 parent bf3d5aa commit 0b4ca4d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

meson.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
if test ! -d venv; then
4+
python3 -m venv ./venv
5+
./venv/bin/pip install --upgrade pip
6+
./venv/bin/pip install git+https://github.com/serebit/meson.git@iterative-transitive-link-dep-resolve
7+
fi
8+
# shellcheck disable=SC1091
9+
# SC1091: Not following: ... was not specified as input (see shellcheck -x).
10+
. ./venv/bin/activate
11+
12+
meson "${@}"

0 commit comments

Comments
 (0)