Added code to run a script once each time it is altered

master
BodgeMaster 2020-02-26 11:09:40 +01:00
parent 73b8a8fb87
commit e59478635a
1 changed files with 6 additions and 0 deletions

View File

@ -7,5 +7,11 @@ echo -n "`find -name "*.php" -or -name "*.html" | sed 's/^/python variable_grabb
echo -n "`find -name "*.php" -or -name "*.html" | sed 's/^/python variable_grabbler.py /;s/$/ variable_grabbler.pass1.json/'`" | bash -
echo -n "`find -name "*.php" -or -name "*.html" | sed 's/^/python variable_grabbler.py /;s/$/ variable_grabbler.pass2.json/'`" | bash -
echo "Checking run-once script..."
echo "Setting permissions."
chmod +x run-once-script.sh
echo -ne "import os, sys\nif \"`sha256sum run-once-script.sh`\" == \"`cat ../run-once`\":\n print \"File has not changed. Aborting.\"\n sys.exit()\nelse:\n print \"File has changed. Calculating checksum...\"\n os.system(\"sha256sum run-once-script.sh > ../run-once\")\n print \"\"\"Executing...\n==========\"\"\"\n os.system(\"./run-once-script.sh\")\n print \"\"\"==========\nDone.\"\"\"" | python
echo "==============================================================================
Done."