8 lines
106 B
Bash
8 lines
106 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
git pull
|
||
|
git submodule update --init --recursive
|
||
|
|
||
|
echo -e "\nclear cache:\n"
|
||
|
rm site/cache/*
|