You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
317 B
13 lines
317 B
7 years ago
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -f "./Fork-Awesome/.git" ]; then
|
||
|
echo -e "\x1b[31;1mFA submodule is not initialized, exit...\x1b[m"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
echo "=== Updating the Fork-Awesome submodule... ==="
|
||
|
(cd Fork-Awesome && git fetch && git reset --hard origin/master)
|
||
|
echo "=== Fork-Awesome updated ==="
|
||
|
|
||
|
bash ./refresh-templates.sh
|