mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
14 lines
306 B
Bash
Executable File
14 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
rm -fR .clone_defs 2> /dev/null
|
|
mkdir .clone_defs
|
|
cd .clone_defs
|
|
git init
|
|
git remote add origin -f git@github.com:rive-app/rive.git
|
|
git config core.sparseCheckout true
|
|
echo '/dev/defs/*' > .git/info/sparse-checkout
|
|
git pull origin master
|
|
|
|
rm -fR ../defs
|
|
mv dev/defs ../
|
|
cd ..
|
|
rm -fR .clone_defs |