mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 02:26:16 +00:00
13 lines
334 B
Bash
13 lines
334 B
Bash
|
#!/bin/sh
|
||
|
# Copyright 2021, Collabora, Ltd.
|
||
|
# SPDX-License-Identifier: BSL-1.0
|
||
|
# Author: Moses Turner <moses@collabora.com>
|
||
|
|
||
|
if ! type "git-lfs" > /dev/null; then
|
||
|
echo "Install git-lfs!"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
mkdir -p ~/.local/share/monado
|
||
|
cd ~/.local/share/monado
|
||
|
git clone https://gitlab.freedesktop.org/monado/utilities/hand-tracking-models
|