threadr.lostcave.ddnss.de/deployment-script.sh

12 lines
589 B
Bash
Executable File

#!/bin/bash
echo "Deployment script for repository \"web-deployment\"
`date`
=============================================================================="
echo "Replacing %CONTENT_DIR% in all HTML and PHP files."
CONTENT_DIR="\/common\/threadr"
echo -e "`find ./ -name '*.html' -or -name '*.php' | sed "s/^/workingfile=\'/;s/\$/\'\; cat \\\$workingfile > .\/tmpdeploymentfile\; cat tmpdeploymentfile | sed \'s#%CONTENT_DIR%#$CONTENT_DIR#\' > \\\$workingfile/"`\nrm tmpdeploymentfile" | bash -
echo "==============================================================================
Done."