forked from root/threadr.lostcave.ddnss.de
18 lines
932 B
Bash
18 lines
932 B
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 code variable replacement
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ variable_grabbler.pass0.json/'`" | bash -
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ variable_grabbler.pass1.json/'`" | bash -
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ variable_grabbler.pass2.json/'`" | bash -
|
|
|
|
echo "==============================================================================
|
|
Done."
|