20 lines
1.2 KiB
Bash
20 lines
1.2 KiB
Bash
#!/bin/bash
|
|
echo "Deployment script for repository \"web-deployment\"
|
|
`date`
|
|
=============================================================================="
|
|
|
|
#activate ** globs
|
|
if [ -n "`shopt globstar | grep off`" ]; then shopt -s globstar; fi
|
|
#remove READMEs
|
|
rm ./threadr/**/README.md
|
|
|
|
#run the macro handler
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ macros/pass0*.json/'`" | bash -
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ macros/pass1*.json/'`" | bash -
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ macros/pass2*.json/'`" | bash -
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ macros/pass3*.json/'`" | bash -
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ macros/pass4*.json/'`" | bash -
|
|
|
|
echo "==============================================================================
|
|
Done."
|