Remove now unnecessary python wrapper to fetch git submodules.

This commit is contained in:
Torsten Paul 2018-09-25 20:18:18 +02:00
parent 28fb5b3ae5
commit 53549d4063
2 changed files with 0 additions and 6 deletions

View file

@ -27,7 +27,6 @@ If you host your project in git, you can do `git submodule add URL PATH` in your
repo to import this library as a git submodule for easy usage. Then you need to do
a `git submodule update --init` after cloning. When you want to update the submodule,
do `cd PATH; git checkout master; git pull`. See `git help submodule` for more info.
"./get_submodules.py" is shortcut that initializes and updates submodules.
Currently Provided Tools:

View file

@ -1,5 +0,0 @@
#!/usr/bin/python
import os
os.system("git submodule update --init")