commit fa2d5a8dc21bf2a702b76b0ef51f7e04d93afaee
parent 81099a2c47d2cfb36be66468a9fef392de0562b2
Author: Ilia Bozhinov <ammen99@gmail.com>
Date: Sat, 21 Mar 2020 21:08:20 +0100
install.sh: fix checking out the correct stream
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/install.sh b/install.sh
@@ -94,13 +94,16 @@ check_download() {
rm -rf $1
git clone https://github.com/WayfireWM/$1
fi
+
+ # Checkout the correct stream
+ cd $1
+ git checkout origin/${STREAM}
}
check_download wayfire
check_download wf-shell
cd $BUILDROOT/wayfire
-git checkout ${STREAM}
meson build --prefix=${PREFIX} -Duse_system_wfconfig=disabled -Duse_system_wlroots=${USE_SYSTEM_WLROOTS}
ninja -C build