The open source OpenXR runtime
at main 506 B view raw
1#!/bin/sh 2# Copyright 2021, Collabora, Ltd. 3# SPDX-License-Identifier: BSL-1.0 4# Author: Moshi Turner <moshiturner@protonmail.com> 5 6if ! type "git-lfs" > /dev/null; then 7 echo "Install git-lfs!" 8 exit 9fi 10 11mkdir -p ~/.local/share/monado 12cd ~/.local/share/monado 13git clone https://gitlab.freedesktop.org/monado/utilities/hand-tracking-models 14# Some weird distros aren't configured to automagically do the LFS things; do them just in case. 15cd hand-tracking-models 16git lfs install 17git lfs fetch 18git lfs pull