2020-02-08 00:36:50 +01:00
|
|
|
#!/bin/bash
|
2020-02-12 10:26:59 +01:00
|
|
|
echo "Deployment script for repository \"web-deployment\"
|
|
|
|
`date`
|
|
|
|
=============================================================================="
|
2020-02-12 05:49:44 +01:00
|
|
|
|
2020-03-12 22:21:48 +01:00
|
|
|
#activate ** globs
|
|
|
|
if [ -n "`shopt globstar | grep off`" ]; then shopt -s globstar; fi
|
|
|
|
#remove READMEs
|
2020-04-08 02:10:05 +02:00
|
|
|
rm ./threadr/**/README.md
|
2020-03-12 22:21:48 +01:00
|
|
|
|
2021-09-02 07:49:10 +02:00
|
|
|
#run the macro handler
|
2021-09-02 08:13:31 +02:00
|
|
|
echo -n "`find -name "*.php" -or -name "*.html" -or -name "*.css" -or -name "*.svg" | sed 's/^/python variable_grabbler.py /;s/$/ macros/pass0_templates.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_misc.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_session.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_install-config.json/'`" | bash -
|
2020-02-19 03:54:48 +01:00
|
|
|
|
2020-02-12 10:26:59 +01:00
|
|
|
echo "==============================================================================
|
|
|
|
Done."
|