From 9b5d95887dc4e80f00f9aabb76db8ebb1751f95a Mon Sep 17 00:00:00 2001 From: Aaron Angert Date: Mon, 21 Mar 2022 22:21:43 -0500 Subject: [PATCH] fixed removeal of git:// recursive init, added https:// init --- setup.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 9cff425d..273367af 100755 --- a/setup.sh +++ b/setup.sh @@ -53,8 +53,12 @@ setup() { espeak "downloading PS move API" #install psmoveapi (currently adangert's for opencv 3 support) rm -rf psmoveapi - git clone --recursive git://github.com/thp/psmoveapi.git + git clone https://github.com/thp/psmoveapi.git cd psmoveapi + sed -i 's/git:/https:/' .gitmodules + git submodule sync --recursive + git submodule update --init --recursive + espeak "compiling PS move API components" mkdir build