File: update-git-submodules.sh

package info (click to toggle)
libtorrent-rasterbar 2.0.11-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 18,304 kB
  • sloc: cpp: 190,670; python: 7,142; makefile: 1,374; ansic: 574; sh: 317; xml: 104
file content (12 lines) | stat: -rwxr-xr-x 442 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

git clone https://github.com/arvidn/try_signal.git deps/try_signal
cd deps/try_signal && git -c advice.detachedHead=false checkout 105cce5 && cd ../..

git clone https://github.com/arvidn/libsimulator.git simulation/libsimulator
cd simulation/libsimulator && git -c advice.detachedHead=false checkout aa6e074 && cd ../..

rm -rf .git*
find -name .gitignore -delete
rm -rf deps/try_signal/.git*
rm -rf simulation/libsimulator/.git*