Changes to 'make pull'

- Do not `make clean` or `git clean`
- Do not `make update`
- Sync submodules recursively
- Do not pass --rebase to git pull
This commit is contained in:
Ian Douglas Scott 2017-10-09 19:28:43 -07:00
parent 5787115671
commit 0f8583e04d
No known key found for this signature in database
GPG key ID: 4924E10E199B5959

View file

@ -17,12 +17,9 @@ clean:
rm -rf build
pull:
git pull --rebase --recurse-submodules
git submodule sync
git pull --recurse-submodules
git submodule sync --recursive
git submodule update --recursive --init
git clean -X -f -d
make clean
make update
update:
cd cookbook && ./update.sh \