Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
cron.sh 317 B
#!/bin/sh
cd $(dirname "$0")

URL="https://www.utwente.nl/en/educational-systems/about_the_applications/canvas/policies/privacy-statement/"
SITE_DIR=site

# Retrieve website
wget -q -O "${SITE_DIR}/index.html" "${URL}"

# Add to Git
git add site
git commit -m "Update at $(date '+%F %T')" >/dev/null
git push

exit 0