We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6891b95 commit 91b16fcCopy full SHA for 91b16fc
1 file changed
scripts/build-muon.sh
@@ -3,6 +3,11 @@
3
BUILDDIR="$(pwd)/.build"
4
CC=${CC:-"gcc"}
5
6
+#muon_repo=https://git.sr.ht/~lattis/muon
7
+#muon_branch=master
8
+muon_repo=https://github.com/igaw/muon.git
9
+muon_branch=fix-ext-samurai
10
+
11
tools_build_samurai() {
12
mkdir -p "${BUILDDIR}"/build-tools
13
git clone --depth 1 https://github.com/michaelforney/samurai.git \
@@ -19,7 +24,7 @@ tools_build_samurai() {
19
24
20
25
tools_build_muon() {
21
26
22
- git clone --depth 1 https://git.sr.ht/~lattis/muon \
27
+ git clone --depth 1 --branch "${muon_branch}" "${muon_repo}" \
23
28
"${BUILDDIR}/build-tools/muon"
29
pushd "${BUILDDIR}/build-tools/muon" || exit 1
30
0 commit comments