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:
parent
5787115671
commit
0f8583e04d
7
Makefile
7
Makefile
|
@ -17,12 +17,9 @@ clean:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
|
||||||
pull:
|
pull:
|
||||||
git pull --rebase --recurse-submodules
|
git pull --recurse-submodules
|
||||||
git submodule sync
|
git submodule sync --recursive
|
||||||
git submodule update --recursive --init
|
git submodule update --recursive --init
|
||||||
git clean -X -f -d
|
|
||||||
make clean
|
|
||||||
make update
|
|
||||||
|
|
||||||
update:
|
update:
|
||||||
cd cookbook && ./update.sh \
|
cd cookbook && ./update.sh \
|
||||||
|
|
Loading…
Reference in a new issue