Fixed submodules script and related docs.

This commit is contained in:
Ricky Rosario 2012-01-12 13:47:17 -05:00
Родитель 54adce9914
Коммит 1aecf2ae7c
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -71,9 +71,9 @@ even easier method when installing a new library from a git repo::
$ cd vendor/src
$ git clone git://<repo>
$ cd ../..
$ ./addsubmodules.sh
$ vim kitsune.pth # Add the new library's path
$ git add kitsune.pth
$ vendor/addsubmodules.sh
$ vim vendor/kitsune.pth # Add the new library's path
$ git add vendor/kitsune.pth
$ git ci -m "Adding $LIBRARY"

2
vendor/addsubmodules.sh поставляемый
Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
for f in src/*; do
for f in vendor/src/*; do
pushd $f > /dev/null && REPO=$(git config remote.origin.url) && popd > /dev/null && git submodule add $REPO $f
done