update: Fix pulling.
This commit is contained in:
parent
3b7a813180
commit
3c2d07352d
1 changed files with 1 additions and 3 deletions
|
|
@ -1,13 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
git pull
|
git pull --recurse-submodules
|
||||||
|
|
||||||
if [ -d './static/images/generated/' ]; then
|
if [ -d './static/images/generated/' ]; then
|
||||||
rm -r './static/images/generated/'
|
rm -r './static/images/generated/'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git submodule update --remote --merge
|
|
||||||
|
|
||||||
find src -iname '*.sh' | while read -r __file; do
|
find src -iname '*.sh' | while read -r __file; do
|
||||||
time ./${__file} "$(dirname "${__file}")/"
|
time ./${__file} "$(dirname "${__file}")/"
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue