added the ability to add costum js/css

This commit is contained in:
Peter 'Pita' Martischka 2011-07-30 16:33:35 +01:00
parent 325839f9fd
commit a47b5ab458
5 changed files with 22 additions and 1 deletions

View file

@ -53,4 +53,12 @@ fi
echo "Clear minfified cache..."
rm -f var/minified*
echo "ensure custom css/js files are created..."
for f in $(cat "static/custom/.gitignore")
do
if [ ! -f "static/custom/$f" ]; then
touch "static/custom/$f"
fi
done
exit 0